@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; use App\General\BrandClass; $logged_in_user = Auth::user(); @endphp

Categories

@if (session('success')) @endif @if ($errors->any()) @endif
Create Categories
@csrf
Please enter a category title.
Clear
@foreach ($categories as $category)
{{ $category->title ?? '' }}
    @foreach ($category->childCategories->take(4) as $childCategory)
  • {{ $childCategory->child_title }}
  • @endforeach
{{-- --}}
@endforeach
{!! $categories->links('pagination::bootstrap-5') !!}
@include('Admin.components.offcanvas')