@extends('layouts.app') @section('content')

Purchase Bill List

@foreach($bills as $bill) @endforeach
ID Date Vendor Image Action
{{ $bill->id }} {{ $bill->bill_date }} {{ $bill->vendor->first_name ?? '' }} {{ $bill->vendor->last_name ?? '' }} @if($bill->image) @endif
@csrf @method('DELETE')
@section('js') @endsection