@extends('layouts/contentLayoutMaster') @section('title', 'Purchases') @section('vendor-style') {{-- vendor css files --}} @endsection @section('content') Milk Purchase Sheet MMT {{$mr->mmt?$mr->mmt->name:''}} Duration {{ date("d-m-Y H:i a", $mr->from_time)}} to {{ date("d-m-Y H:i a", $mr->to_time)}} Opening balance {{$mr->opening_balance}} Closing Balance {{$mr->left_over_milk}} Gain / Loss {{$mr->gain_loss}} Sr. No. Supplier Gross volume Ts Volume Time @foreach($milk_purchases as $mpr) MPR-{{$mpr->serial_number}} {{$mpr->supplier?$mpr->supplier->name:''}} {{$mpr->gross_volume}} {{$mpr->ts_volume}} {{$mpr->created_at}} @endforeach @endsection @section('vendor-script') {{-- vendor files table data --}} @endsection @section('page-script') @endsection