@extends('layouts.app') {{--Important Variable--}} @php $moduleName = __('lang.land'); $createItemName = __('lang.create') . $moduleName; $breadcrumbMainName = $moduleName; $breadcrumbCurrentName =__('lang.all'); $breadcrumbMainIcon = "fas fa-landmark"; $breadcrumbCurrentIcon = "format_list_bulleted"; $ModelName = 'App\Models\Land'; $ParentRouteName = 'land'; $setting = \App\Models\Setting::systemBuilder(); $unofficial_setting = userAllowedUnofficial(); $common_helper = \App\Helpers\CommonHelper::class; $all = checkRolePermission("LandAcquisition.All"); $create = checkRolePermission("LandAcquisition.Create"); $delete = checkRolePermission("LandAcquisition.Delete"); $edit = checkRolePermission("LandAcquisition.Edit"); $pdf = checkRolePermission("LandAcquisition.Pdf"); $permanently_delete = checkRolePermission("LandAcquisition.PermanentlyDelete"); $restore = checkRolePermission("LandAcquisition.Restore"); $show = checkRolePermission("LandAcquisition.Show"); $trash_show = checkRolePermission("LandAcquisition.TrashShow"); @endphp @section('title') {{ $moduleName }} -> {{ $breadcrumbCurrentName }} @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) @php $general_letters = $common_helper::generalLetterBranchWiseList($item->branch_id,'land_acquisition'); $companies = [$item->branch->official_company->name ?? '' , $item->branch->unofficial_company->name ?? '']; @endphp @endforeach
{{__('lang.sno')}} {{__('lang.name')}} {{__('lang.project')}} {{__('lang.company')}} {{__('lang.address')}} {{__('lang.size')}} {{__('lang.amount')}} {{$transaction->systemSettingCurrency()}} {{__('lang.options')}}
{{ $i }} {{ $item->land_name }} {{ $item->branch->name ?? '' }} {{ collect($companies)->implode(' , ') }} {{ $item->address }} {{ $item->size }} - {{ $item->size_unit }} {{ number_format($item->total_amount,2) }}
{{__('lang.s_no')}} {{__('lang.name')}} {{__('lang.project')}} {{__('lang.company')}} {{__('lang.address')}} {{__('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