@extends('layouts.admin') @section('title', 'Create Category') @section('content-header', 'All Category') @section('content')
Add Category
@foreach($categories as $category) @endforeach
Name Slug Active Delete View Product
{{$category->name}} {{$category->slug}} {{$category->active}} Modify
@method("DELETE") @csrf
View {{$category->name}}'s Product
@endsection @section('js') @endsection