@extends('admin.layouts.app') @section('title', 'ব্র্যান্ড সমূহ') @section('page-title', 'ব্র্যান্ড সমূহ') @section('content') {{-- Flash Message --}} @if(session('success')) @endif {{-- Brands Table --}}
ব্র্যান্ড তালিকা
নতুন ব্র্যান্ড
@forelse($brands as $brand) @empty @endforelse
# লোগো নাম স্ট্যাটাস অ্যাকশন
{{ $loop->iteration + ($brands->currentPage() - 1) * $brands->perPage() }} @if($brand->logo) {{ $brand->name }} @else
@endif
{{ $brand->name }} @if($brand->is_active) সক্রিয় @else নিষ্ক্রিয় @endif
@csrf @method('DELETE')
কোনো ব্র্যান্ড পাওয়া যায়নি
{{-- Pagination --}}
{{ $brands->links() }}
@endsection