@extends('layouts.service-details-layout', [ 'subTitle' => 'Demand Notices' ]) @section('additional-header-content')
Edit Demand Notices Preview Bill
@endsection @section('content')
@foreach($demandNotices as $notice) @php $user = $notice->modifiedBy ?? $notice->createdBy; @endphp @endforeach
ID Name Amount Revenue Code Modified By Last Modified At
{{$notice->id}} {{ $notice->display_name }} {{ $notice->amount ? number_format($notice->amount, 2) : '-' }} {{ $notice->revenue_code ? $notice->revenue_code->revenue_code : '-' }} {{ $user ? $user->FullName : '' }} {{ $notice->created_at ?? $notice->updated_at }}
@include('components.demand-notice.demand-notice-modal') @endsection @section('more-scripts') @endsection