@extends('layouts.master-layouts') @section('title') {{ __('Update Invoice') }} @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Update Invoice @endslot @slot('li_1') Dashboard @endslot @slot('li_2') Invoice @endslot @slot('li_3') Update Invoice @endslot @endcomponent
{{ __('Invoice Details') }}
@method('PATCH') @csrf
@error('patient_id') {{ $message }} @enderror
@if ($role == 'doctor' || $role == 'accountant')
@error('appointment_id') {{ $message }} @enderror
@endif @if ($role == 'receptionist')
@error('appointment_id') {{ $message }} @enderror
@endif
@error('doctor_id') {{ $message }} @enderror
@error('payment_mode') {{ $message }} @enderror
@error('payment_status') {{ $message }} @enderror
{{ __('Invoice Summary') }}
@foreach ($invoice_detail->invoice_detail as $item)
@endforeach
@endsection @section('script') @endsection