@extends('admin.master') @section('content')

Brand Management

Manage brand list, logo, slug and status

Add New
@if(session('success'))
{{ session('success') }}
@endif
@forelse($brands as $key => $item) @empty @endforelse
# Logo Name Slug Description Status Created At Action
{{ $brands->firstItem() + $key }} @if($item->logo) {{ $item->name }} @else No Logo @endif {{ $item->name }} {{ $item->slug }} {{ \Illuminate\Support\Str::limit($item->description, 50) ?: 'N/A' }} @if($item->is_active) Active @else Inactive @endif {{ $item->created_at->format('d M Y') }}
Edit
@csrf @method('DELETE')
No data found
{{ $brands->links() }}
@endsection