@extends('layouts.app') @section('content')
@isset($migrationMissing)
Legal notifications table is not created yet. Please run database migrations to enable this module.
@endisset

Legal Notifications

Create Notice
@foreach($notices as $n) @endforeach
Customer CNIC Unit Type Date Status Actions
{{ $n->booking->customer->name }} {{ $n->booking->customer->cnic }} {{ $n->booking->unit->unit_number }} {{ $n->notice_type }} {{ $n->notice_date->format('Y-m-d') }} {{ $n->status }} @if(!$n->response_received)
@csrf
@endif
{{ $notices->links() }}
@endsection