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