@extends('layouts.app')
@section('content')
{{-- Page Header --}}
| # | {{ __('Name') }} | {{ __('Parent Category') }} | {{ __('Thumbnail') }} | {{ __('Featured') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $category->name }}
|
{{ $category->parent_id ? $category->parent->name : '-' }} |
@if ($category->thumbnail_id && $category->thumbnail)
|
@php $isFeatured = $category->is_featured; $bgColor = $isFeatured ? 'bg-success' : 'bg-danger'; $textColor = $isFeatured ? 'text-white' : 'text-white'; $statusText = $isFeatured ? 'Yes' : 'No'; @endphp {{ $statusText }} |
@can('category.show')
|
| {{ __('No categories found.') }} | |||||