@extends('layouts.master-layouts') @section('title') {{ __('Create New Invoice') }} @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Create Invoice @endslot @slot('li_1') Dashboard @endslot @slot('li_2') Invoice @endslot @slot('li_3') Create Invoice @endslot @endcomponent
{{ __('Invoice Details') }}
@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') }}
@endsection @section('script') @endsection