@extends('layouts.admin_layout')
@section('content')
@section('title', 'Category List')
S.No |
Title |
Order |
Status |
Action |
@forelse($categories as $key=>$row)
{{$key+1+($categories->currentPage()-1) * ($categories->perPage())}} |
{{$row->title ?? ''}} |
{{$row->order_by ?? ''}} |
@if($row->status == 1) @else @endif |
Edit
Delete
|
@empty
Data not found |
@endif
{{$categories->links()}}
@include('includes.admin.footer')
@include('includes/admin/delete-model')
@stop