@extends('layouts.app') @section('title', 'Brands') @section('content')

All Brands

Explore our collection of trusted brands

@if($brands->count() > 0)
@foreach($brands as $brand)
@if($brand->logo) {{ $brand->name }} @else
@endif
{{ $brand->name }}
@if($brand->description)

{{ substr($brand->description, 0, 100) }}

@endif
@endforeach
{{ $brands->links() }}
@else

No brands available at the moment

@endif
@endsection