@extends('dashboard.layouts.master') @section('title', 'Energisations List') @section('content')

Energisations List

@forelse ($energisations as $key => $energisation) @empty @endforelse
ID Name Price Description Actions
{{$energisations->firstItem() + $key}} {{ $energisation->title }} {{ $energisation->price ?? 'N/A' }} {{ $energisation->description ?? 'N/A' }} View Edit
@csrf @method('DELETE')
Energisation Not Found
{{ $energisations->links() }}
@endsection