@extends('layouts.admin-layout')
@section('title', 'All Category ')
@section('content')
Category Section
| S.N. |
Title |
status |
Action |
@foreach($get_categories as $category)
| {{ $loop->iteration }} |
{{$category->category_name}} |
{{$category->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection