@extends('layouts.app') {{--Important Variables--}} @php $moduleName = __('lang.land'); $createItemName = __('lang.create') . $moduleName; $breadcrumbMainName = $moduleName; $breadcrumbCurrentName = __('lang.trashed'); $breadcrumbMainIcon = "fas fa-landmark"; $breadcrumbCurrentIcon = "delete"; $ModelName = 'App\Models\Land'; $ParentRouteName = 'land'; @endphp @section('title') {{ $moduleName }}->{{ $createItemName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content')
{{ $land->links() }}
{{ csrf_field() }} @if(count($land)>0) @foreach($land as $item) @include('includes.misc.deleted_by', ['item' => $item]) @endforeach
{{__('lang.s_no')}} {{__('lang.name')}} {{__('lang.location')}} {{__('lang.size')}} {{__('lang.amount')}} {{$transaction->systemSettingCurrency()}} {{__('lang.options')}}
{{ $i }} {{ $item->land_name }} {{ $item->address }} {{ $item->size }} - {{ $item->size_unit }} {{ number_format($item->total_amount,2) }}
{{__('lang.s_no')}} {{__('lang.name')}} {{__('lang.location')}} {{__('lang.size')}} {{__('lang.amount')}} {{$transaction->systemSettingCurrency()}} {{__('lang.options')}}
@else
{{__('lang.there_has_no_data')}}
@endif
{{ $land->links() }}
@stop @push('include-css') @endpush @push('include-js') {{----}} {{--All datagrid --}} @endpush