@extends('layouts.store') @section('title', __('app.shop') . ' - ' . __('app.site_name')) @section('content')

{{ __('app.shop') }}

@if($products->count())
@foreach($products as $product)@include('store.partials.product-card', ['product' => $product])@endforeach
{{ $products->links() }}
@else

{{ __('app.no_products') }}

@endif
@endsection