@extends('layouts.admin') @section('title', 'Category Management - Orange Groceries Admin') @section('header_title', 'Category Management') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Add New Category

@csrf

* Note: If both file upload and URL are provided, the uploaded image file will take priority.

Category List

@foreach($categories as $cat) @endforeach
Image Category Name Products Status Actions
{{ $cat->name }} {{ $cat->products_count }} items {{ $cat->status ? 'Active' : 'Disabled' }}
@csrf
{{ $categories->links() }}

Edit Category

@csrf
@endsection