@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Contract

@if(Session::has('message'))

{{ Session::get('message') }}

@endif

Contract Details

Machine Reading Details

@foreach($paper as $row)
@endforeach
Cancel

Machine Reading History

@foreach($mdatas as $data) @php $pdatas = unserialize($data->paper_and_qty); $i = 0; @endphp @foreach($pdatas as $prow) @php $i++; $pid = $prow['id']; @endphp @if($i==1) @endif @endforeach @endforeach
Date Paper No. of Copy
{{date('d-m-Y',strtotime($data->read_date))}} {{$prow['name']}} {{$prow['qty']}}
@stop {{-- page level scripts --}} @section('footer_scripts') @stop