{{ isset($finish) ? 'Edit Finish' : 'Add Finish' }}
@csrf @if(isset($finish)) @method('PUT') @endif
@error('finish_name') {{ $message }} @enderror
Finishes List
@foreach($finishes as $index => $fn) @endforeach
ID Finish Name Status Actions
{{ $index + 1 }} {{ $fn->finish_name }} @if($fn->is_active) Active @else Inactive @endif @if($fn->is_active)
@csrf @method('DELETE')
@else
@csrf
@endif
{{ $finishes->links('pagination::bootstrap-5') }}