retrofairie/resources/views/categories/show.blade.php

9 lines
234 B
PHP

<x-layout :title="'Category: '. $category->name">
<x-window>
@foreach ($category->programs as $program)
{{ $program->name }}
@endforeach
<a href="{{ route('categories.index') }}">All</a>
</x-window>
</x-layout>