@extends('layouts.app') @section('title', $bill->number) @section('content')

{{ $bill->number }}


@include('bill.partials.details')
@role('admin') @if($bill->paid)
{{ csrf_field() }}
Payment Date:
{{ $bill->paid->format('d-M-Y') }}
@else
{{ csrf_field() }}
@endif @endrole
@endsection