@extends('app.dashboard') @section('content')

Order Upload

@if (Session::has("success"))
{{Session::get('success')}}
@elseif(Session::has("warning"))
{{Session::get('warning')}}
@endif
@csrf
@foreach($Batches as $Batch) @endforeach
Sl. No. Customer Name Project Name Product Count Created at
{{ $loop->iteration }} {{ $Batch->customer_name }} {{ $Batch->batch_name }} {{ $Batch->product_type }} {{ $Batch->count }} {{ $Batch->created_at }}
@endsection