{{ isset($material) ? 'Edit Material' : 'Add Material' }}
@csrf @if(isset($material)) @method('PUT') @endif
@error('material_name') {{ $message }} @enderror
Materials List
@foreach($materials as $index => $mat) @endforeach
ID Material Name Status Actions
{{ $index + 1 }} {{ $mat->material_name }} @if($mat->is_active) Active @else Inactive @endif @if($mat->is_active)
@csrf @method('DELETE')
@else
@csrf
@endif
{{ $materials->links('pagination::bootstrap-5') }}