@extends('layouts.front-end.app') @section('title', translate('all_Brands')) @push('css_or_js') @endpush @section('content')

{{ translate('brands') }}

{{translate('Find_your_favourite_brands_and_products')}}

@if(count($brands) > 0)
@foreach($brands as $brand) {{$brand->image_alt_text ?? $brand->name}}
{{$brand->name}}
@endforeach
@else
{{ translate('brand') }}
{{ translate('There_is_no_brands') }}
@endif
{!! $brands->links() !!}
@endsection @push('script') @endpush