@extends('dashboard.layouts.app') @section('title', __('dashboard.Test Categories')) @section('page_heading', __('dashboard.Test Categories')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Test Categories') }}

{{ __('dashboard.Reset') }}
@if($categories->isEmpty())
{{ __('dashboard.No categories found') }}.
@else
@foreach($categories as $category) @endforeach
ID {{ __('dashboard.Name') }} {{ __('dashboard.Parent Category') }} {{ __('dashboard.Status') }} {{ __('dashboard.Created At') }} {{ __('dashboard.Actions') }}
{{ $category->id }} {{ $category->name }} {{ $category->parent ? $category->parent->name : '-' }} @if($category->status) {{ __('dashboard.Active') }} @else {{ __('dashboard.Inactive') }} @endif {{ $category->created_at }} {{ __('dashboard.View') }} {{ __('dashboard.Edit') }}
@csrf @method('DELETE')
{{ $categories->links() }} @endif
@endsection