@extends('admin.layouts') @section('title', 'Category') @section('header') @endsection @section('content')
{{-- --}} @foreach($categories as $category) {{-- --}} @endforeach
SN Created DateTOWNNAME IMAGE PREVIEW TYPE ACTION
{{ $loop->iteration }} {{ \Carbon\Carbon::parse($category->created_at)->format('d-m-Y h:i A') }}{{ optional($category->deliveryFeeMaster)->town ?? 'N/A' }} @if($category->category_type == 1) {{ $category->category_name }} @elseif($category->category_type == 2) {{ $category->subcategory_name }} (Linked to: {{ optional($category->parentCategory)->category_name ?? 'N/A' }}) @endif @if($category->category_img) preview image @else No Image @endif {{ $category->category_type == 1 ? 'Category' : 'SubCategory' }} edit_square
@foreach($categories as $category) @endforeach @endsection @section('footer') @endsection