@extends('layouts.admin') @section('content')

Add New Category

@include('errors._error-bag')
{{csrf_field()}}

Registered Categories

@forelse($categories as $category) @empty @endforelse
ID Name Main Category Added On Edit
{{$category->id}} {{$category->name}}

{{config("coco.main.{$category->main}")}}

{{$category->created_at->toFormattedDateString()}}
There is not category in the store
@endsection @section('js') @endsection