@extends('layouts.admin') @section('title', __('app.categories')) @section('content')

{{ __('app.categories') }}

{{ __('app.total') }}: {{ $categories->total() }}

{{ __('app.create') }}
@foreach($categories as $category) @endforeach
{{ __('app.image') }} {{ __('app.name_ar') }} {{ __('app.name_en') }} {{ __('app.products') }} {{ __('app.is_active') }} {{ __('app.actions') }}
@if($category->image) @else
@endif
{{ $category->t('name', 'ar') }} {{ $category->t('name', 'en') }} {{ $category->products_count }} {{ $category->is_active ? __('app.is_active') : '—' }}
{{ __('app.edit') }}
@csrf @method('DELETE')
{{ $categories->links() }}
@endsection