@extends('admin::layouts.master')
@section('content')
| SN |
Title |
Status |
Actions |
@forelse($categories as $index => $category)
| {{ $index + 1 }} |
{{ $category->title }} |
@if($category->is_active)
Active
@else
Inactive
@endif
|
|
@empty
|
No categories found.
|
@endforelse
@endsection