@extends('layouts/contentLayoutMaster') @section('title', 'Gain Loss Summary Report') @section('vendor-style') {{-- vendor css files --}} @endsection @php $plants = \App\Models\Plant::select('name', 'id')->get(); $suppliers = \App\Models\Supplier::with('supplier_type')->get(); @endphp @section('content') Gain Loss Summary Report Purchase Type Please Select Purchase Type Area Office {{-- Plant --}} {{-- Complete Shed Including Ao & Plants --}} @csrf From Date @error('from_date') {{ $message }} @enderror To Date @error('to_date') {{ $message }} @enderror Generate Report @csrf Area Office Please Select AreaOffice @foreach ($areaOffices as $areaOffice) {{ $areaOffice->name }} @endforeach @error('area_office_id') {{ $message }} @enderror Collection Points {{-- MMT --}} Select Levels {{-- Please Select Level --}} MCC Level {{-- 2 MMT Level 3 Area Lab Dispatch 4 Dispatch To Plant Reception 5 Purchase To Plant Reception --}} From Date @error('from_date') {{ $message }} @enderror To Date @error('to_date') {{ $message }} @enderror Generate Report @csrf Plant Please Select Plant @foreach ($plants as $plant) {{ $plant->name }} @endforeach Collection Points MMT Select Levels Please Select Level 1 MCC Level 2 MMT Level 3 Area Lab Dispatch 4 Dispatch To Plant Reception 5 Purchase To Plant Reception From Date @error('from_date') {{ $message }} @enderror To Date @error('to_date') {{ $message }} @enderror Generate Report @endsection @section('vendor-script') {{-- vendor files table data --}} @endsection @section('page-script') @endsection