@extends('layouts.app') @section('title') {{ __('Edit Billing ') . $billing->billing_no }} @endsection @section('breadcrumb')

{{ __('Billing') }}

@endsection @section('content')

{{ __('Edit Billing ') . $billing->billing_no }}

@can('generate_billing_pdf') {{ __('Generate PDF') }} @endcan
@csrf @method('put') @include('admin.billing._form')

Comments

@csrf
@foreach ($billing->comments as $comment)
Avatar
{{ $comment->user->name }}
{{ $comment->comment }}
{{ date('M d, Y | h:i a', strtotime($comment->created_at)) }}
@endforeach
@endsection @section('scripts') @endsection