@extends('admin.layout.app') @section('title', 'Levels') @section('content')
@foreach ($levels as $level) @endforeach
No. Name Created At Action
{{ $loop->iteration }} {{ $level->name }} {{ $level->created_at->format('Y-m-d') }} Edit
@csrf @method('DELETE')
Showing {{ $levels->firstItem() }} to {{ $levels->lastItem() }} of {{ $levels->total() }} entries
{{ $levels->withQueryString()->links() }}
@endsection