@extends('user.layouts.master') @section('breadcrumb') @include('user.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("user.dashboard"), ] ], 'active' => __($page_title)]) @endsection @section('content')

{{ __($page_title) }}

@forelse($products ??[] as $key => $card) @php $image = $card['logoUrls'][0]; @endphp @empty
{{ __("No data found!") }}
@endforelse @if (count($products??[]) > 0) {{ $products->withQueryString()->setPath(url()->current())->links('pagination::bootstrap-5') }} @endif
@endsection @push('script') @endpush