@extends('master.app') @section('title','Process Batches') @section('body')
Production / Process Batches
Create Batch
@if(session('msg'))
{{ session('msg') }}
@endif
@forelse($batches as $i => $b) @empty @endforelse
# Token Date Total Raw Cost Produce CPI Status Action
{{ $batches->firstItem() + $i }} {{ $b->token }} {{ $b->date }} {{ number_format($b->total_raw_cost,2) }} {{ number_format($b->produce_cpi,4) }} {{ $b->status==1?'Active':'Closed' }} View
@csrf @method('DELETE')
No data
{{ $batches->links() }}
@endsection