@extends('layouts.admin.app') @section('content')
Category List add
@if(count($categories) >0) @foreach($categories as $category) @endforeach @endif
Category Name Action
{{ $category->name }}
@csrf @method('DELETE')
@include('layouts.admin.footer')
@endsection