@extends('admin.layout.app') @section('content')
@forelse ($ages as $key => $age) @empty @endforelse
# Age Range Image Status Action
{{ $key + 1 }} {{ $age->age_range }} @if($age->image) {{ $age->imagealt ?? 'Age Image' }} @else No image @endif @if ($age->status == 'Active') Active @else Inactive @endif
@csrf @method('DELETE')
No age categories found.
@if(method_exists($ages, 'links'))
{{ $ages->links('pagination::bootstrap-4') }}
@endif
@endsection