@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}}
@foreach($milk_purchases as $mpr) @endforeach
Sr. No. Supplier Gross volume Ts Volume Time
MPR-{{$mpr->serial_number}} {{$mpr->supplier?$mpr->supplier->name:''}} {{$mpr->gross_volume}} {{$mpr->ts_volume}} {{$mpr->created_at}}
@endsection @section('vendor-script') {{-- vendor files table data --}} @endsection @section('page-script') @endsection