@extends('layouts.admin') @section('title', 'Brands') @section('page-title', 'Brands') @section('content')

Brands

@forelse($brands ?? [] as $index => $brand) @empty @endforelse
# BRAND NAME SLUG STATUS ACTIONS
{{ ($brands->currentPage() - 1) * $brands->perPage() + $index + 1 }} {{ $brand->name }} {{ $brand->slug ?? \Illuminate\Support\Str::slug($brand->name) }} {{ $brand->is_active ? 'Active' : 'Inactive' }}
branding_watermark

No brands found

@if(isset($brands) && $brands->hasPages())
{{ $brands->links() }}
@endif
@push('scripts') @endpush @endsection