@extends('mrp') @section('title', $page_title) @section('content')
@csrf
@error('import_file') {{ $message }} @enderror

{{$page_title}}

Back
@if (auth()->user()->can('forecast-create'))
Add New
@endif
@if(Session::has('message')) @endif
@foreach ($forecasts as $forecast) @endforeach
No Customer DOCK-CD Quantity Part Name Part No Date Action
{{$loop->iteration}} {{$forecast->customer->customer_name ?? 'N/A'}} {{$forecast->qty_forecast}} {{$forecast->product->part_name ?? 'N/A'}} {{$forecast->product->part_number ?? 'N/A'}} {{$forecast->forecast_date}}
@if (auth()->user()->can('forecast-edit')) @endif @if (auth()->user()->can('forecast-delete')) @endif
@endsection @push('css') @endpush @push('js') @endpush