@extends('layouts.admin') @section('title', 'Categories') @section('page-title', 'Categories Management') @section('content')

Kelola kategori video

Tambah Kategori
@if ($categories->count() > 0)
@foreach ($categories as $category) @endforeach
Icon Name Status Actions
@if ($category->icon_svg)
{!! $category->icon_svg !!}
@else
@endif

{{ $category->name }}

@if ($category->description)

{{ Str::limit($category->description, 50) }}

@endif
@csrf
@csrf @method('DELETE')
{{ $categories->links() }}
@else

Belum ada kategori

Mulai dengan menambahkan kategori pertama.

@endif
@endsection