@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('employee-create'))
Add New
@endif
@if(Session::has('message')) @endif
@foreach ($employees as $employee) @endforeach
No NIK Employee Name Section Shift Descripiton Action
{{$loop->iteration}} {{$employee->nik}} {{$employee->employee_name}} {{$employee->section ?? 'N/A'}} {{$employee->shift->shift_name ?? 'N/A'}} {{$employee->description}}
@if (auth()->user()->can('employee-edit')) @endif @if (auth()->user()->can('employee-delete')) @endif
@endsection @push('css') @endpush @push('js') @endpush