@extends($master)
@section('title', 'Manage Sub Category')
@section('body')
| SL No |
Category Name |
Name |
Description |
Image |
Status |
Action |
@foreach($subCategories as $subCategory)
| {{$loop->iteration}} |
{{isset($subCategory->category->name) ? $subCategory->category->name : ' '}} |
{{$subCategory->name}} |
{{$subCategory->description}} |
}}) |
{{$subCategory->status}} |
|
@endforeach
@endsection