@extends('layouts.admin') @section('title', 'Brands ยท Aromaniacs ERP') @section('overline', 'Catalog') @section('heading', 'Brands') @section('content')
@if ($search !== '') @endif
@if ($brands->isEmpty())

No brands found.

Create your first brand to start building the catalog.

@else @foreach ($brands as $brand) @endforeach
Logo Name Slug Status Created Actions
@php $logoSrc = null; if (! empty($brand->logo_path)) { $logoSrc = str_starts_with((string) $brand->logo_path, 'http://') || str_starts_with((string) $brand->logo_path, 'https://') ? $brand->logo_path : asset($brand->logo_path); } @endphp @if ($logoSrc) {{ $brand->name }} logo @else No logo @endif {{ $brand->name }} {{ $brand->slug }} @if ($brand->is_active) Active @else Hidden @endif {{ $brand->created_at->format('d M Y') }}
@csrf @method('PATCH')
@csrf @method('DELETE')
{{ $brands->links() }}
@endif
@endsection