@extends('backend.layouts.master') @section('title') {{ $pageHeader['title'] }} List @endsection @push('styles') @endpush @section('admin-content')

Product List

@include('backend.layouts.partials.message')
@forelse($datas as $key => $flat) @empty @endforelse
# Name Project Category Size Address Price/Sqft Total Price Actions
{{ $key + 1 }} {{ $flat->name }} {{ $flat->project->name ?? '-' }} {{ $flat->category->name ?? '-' }} {{ $flat->size }} /Sqf {{ $flat->address }} {{ $flat->price_per_sqft ?? '-' }} TK {{ number_format(($flat->size * $flat->price_per_sqft) + ($flat->utility ?? 0)) }} TK {{ $flat->remarks }} @if(!\App\Models\Invoice::where('flat_id', $flat->id)->exists()) @else @endif
@csrf @method('DELETE')
No Flats found.
{{ $datas->links() }}
{{-- ========================= --}} {{-- MODALS OUTSIDE TABLE --}} {{-- ========================= =--}} @foreach($datas as $flat) @endforeach {{-- END MODALS --}}
@include('backend.layouts.partials.footer')
@endsection