@extends('layouts.admin.master') @section('styles') @endsection @section('body-content')

{{--
Add Category
--}}
@if ( session()->has('message') )
Well done! {{ session('message') }}
@elseif(session()->has('error'))
Oh snap! {{ session('error') }}
@endif
@if(isset($shop_categories)) @foreach($shop_categories as $shop_category) @if($shop_category['active'] == 1) @else @endif @endforeach @endif
ID Name Gender Status Action
{{$shop_category['id']}} {{$shop_category['shop_cat_name']}} {{$shop_category['gender']}}{{App\Models\ShopCategory::STATUS_ACTIVE}} {{App\Models\ShopCategory::STATUS_NOT_ACTIVE}} View
ID Name Slug Status Action
@endsection @section('scripts') @endsection