@extends('back.layout.template') @section('title','List Category - Admin') @section('content') {{-- Content --}}

Categories

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
    {{ session('success') }}
@endif @foreach ($categories as $item) @endforeach
No Name Slug Created At Function
{{ $loop->iteration }} {{ $item->name }} {{ $item->slug }} {{ $item->created_at }}
{{-- Modal-Create --}} @include('back.category.create-modal') {{-- Modal-Update --}} @include('back.category.update-modal') {{-- Modal-Delete --}} @include('back.category.delete-modal')
@endsection