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

Import data from excel

@csrf
@error('import_file') {{ $message }} @enderror
--}}

{{$page_title}}

Back
@if (auth()->user()->can('product-create'))
Add New
@endif
@if(Session::has('message')) @endif
@foreach ($products as $product) @endforeach
No Product Code Part Name Part Number Model Unit Customer Action
{{$loop->iteration}} {{$product->product_code}} {{$product->part_name}} {{$product->part_number}} {{$product->product_name ?? 'N/A'}} {{$product->unit->unit_name ?? 'N/A'}} {{$product->customer->customer_name ?? 'N/A'}}
@if (auth()->user()->can('product-edit')) @endif @if (auth()->user()->can('product-delete')) @endif
@endsection @push('css') @endpush @push('js') @endpush