@extends( 'layouts.app' ) @section('title') Purchase Detail @stop @section('breadcrumb')
@stop @section('content')| Date | {{date('d-m-Y', strtotime($purchase->date)) }} |
| Product | {{$purchase->product}} |
| Supplier | {{$purchase->supplier}} |
| Rate | {{number_format($purchase->rate)}} |
| Quantity | {{$purchase->qty}} |
| Total Amount | {{number_format($purchase->total)}} |
| Tax | {{number_format(($purchase->tax / 100) * $purchase->total)}} [{{$purchase->tax}}%] |
| Net Amount | {{number_format($purchase->net)}} |
| Updated at | {{$purchase->updated_at}} |
| Created at | {{$purchase->created_at}} |