@extends('layouts.master')
@section('content')
@if (session('status'))
{{ session('status') }}
@endif
Category
Total Category({{$total}})
S No. |
Name |
Status |
Action |
@php $i = 0 ; @endphp
@foreach ($categories as $cat)
{{ ++$i }} |
{{ $cat->category_name }} |
{{ $cat->status==1? 'Active':'Inactive' }} |
|
@endforeach
@endsection