@extends('mrp') @section('title', $page_title) @section('content')

{{ $page_title }}

Back
@if (auth()->user()->can('delivery_planning-create'))
Add New
@endif
@if (Session::has('message')) @endif
@foreach ($plannings as $planning) @endforeach
No DO Code DO Date Delivery Date Customer Action
{{ $loop->iteration }} {{ $planning->do_code }} {{ $planning->do_date }} {{ $planning->delivery_date }} {{ $planning->customer->customer_name ?? 'N/A' }}
@if (auth()->user()->can('delivery_planning-edit')) @endif @if (auth()->user()->can('delivery_planning-delete')) @endif
@endsection @push('css') @endpush @push('js') @endpush