@extends('admin.layouts.master') @section('content')
Categoria de Links
Novo registro @if (session()->has('success'))
@push('scripts') @include('admin.scripts.toast') @endpush @endif @if (session()->has('error'))
@push('scripts') @include('admin.scripts.toast') @endpush @endif
@foreach ($categories as $category) @endforeach
id Nome Slug Ações
{{ $category->id }} {{ $category->name }} {{ $category->slug }}
@csrf @method('DELETE')
{{ $categories->links() }}
@endsection