@extends('layouts.website.website') @section('content')
Pharmacy All Sales
@foreach (App\MadicineSale::latest()->get() as $item) @endforeach
Invoice Id Date Sub Total Discount Grand Total Options
{{ $item->invoice_id }} {{ $item->created_at->format('d,M Y') }} {{ $item->sub_total }} {{ $item->discount }} {{ $item->grand_total }} Edit Invoice Print
@endsection