@foreach($categories as $category) {{-- TODO: add instant active/inactive link?--}} @endforeach
ID UID Name Description Image Icon Active? Notes Created Updated Actions
{!! link_to_route('backend.categories.show', $category->id, ['id' => $category->id]) !!} {!! link_to_route('backend.categories.show', $category->uid, ['id' => $category->id]) !!} {!! link_to_route('backend.categories.show', $category->name, ['id' => $category->id]) !!} {{ $category->description }} @if($image_url = $category->getImageUrl('image'))
@endif
@if($icon_url = $category->getIconImageUrl())
@endif
{{ $category->is_active ? 'Yes' : 'No' }}{{ $category->notes }} {!! Helper::displayCalendarDatetime($category->created_at) !!} {!! Helper::displayCalendarDatetime($category->updated_at) !!} {!! Helper::icon_to_route('backend.categories.show', 'fa-eye', [$category->id], ['title' => 'View Category']) !!} {!! Helper::icon_to_route('backend.categories.edit.get', 'fa-pencil', [$category->id], ['title' => 'Edit Category']) !!}
@push('scripts') @endpush