{{-- extend layout --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Marcas') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content') @include("pages.supplier.modals.supplier-brand-modal")
Filtrar keyboard_arrow_down
{{-- {{ $suppliers }} --}}
{{-- {{ $suppliers }} --}} {{-- {{ $categories }} --}} @forelse ($suppliers as $supplier) @isset($supplier->description) @endisset @empty($supplier->description) @endempty @empty @endforelse
NOMBRE COLOR CATEGORÍA DESCRIPCIÓN ACCIONES
{{ $supplier->name }} @foreach ($categories as $category) @if($supplier->categoryUuidKey === $category->uuidKey) {{ $category->name }} @endif @endforeach {{ substr($supplier->description, 0, 150) }}
@endsection {{-- vendor scripts --}} @section('vendor-script') @endsection {{-- page scripts --}} @section('page-script') @endsection