@extends('layouts.service-details-layout', [ 'subTitle' => 'Update Demand Notices' ]) @php $notices = old('notices') ? array_map(function ($item) { return (object) ['display_name' => $item['fee_name'] ?? '', 'id' => $item['notice_id'] ?? null, 'amount' => $item['fixed_amount'] ?? null]; }, old('notices')) : $demandNotices; @endphp @section('content')
    @foreach($notices as $n => $notice)
  1. Name
    Amount
  2. @endforeach
@csrf
@endsection @section('more-scripts') @endsection