@extends('layouts.app') @section('meta_title', $category->name.' - Category - '.config('app.name')) @section('meta_description', \Illuminate\Support\Str::limit((string) ($category->description ?? 'Kumpulan video dalam kategori '.$category->name), 155)) @section('canonical', route('category.show', $category->slug)) @section('content')

Kategori: {{ $category->name }}

@foreach($videos as $video)
{{ $video->title }}
@endforeach {{ $videos->links() }} @endsection