@extends('layouts.admin-layout') @section('title', 'All Category ') @section('content')

Category Section

@foreach($get_categories as $category) @endforeach
S.N. Title status Action
{{ $loop->iteration }} {{$category->category_name}} {{$category->status === 1 ? 'Approve' : 'Not Approve'}}
@endsection @section('script') @endsection