{{ __('general_words.Shop list' ) }}
{{ __('general_words.Shop name' ) }} | {{ __('general_words.Price' ) }} | {{ __('general_words.Category' ) }} | {{ __('general_words.Area' ) }} | {{ __('general_words.Place' ) }} |
---|---|---|---|---|
{{ $shop->name }} | {{ $shop->price }} ({{ $shop->currency->symbol ?? null }})/{{ $shop->time }} | @foreach ($shop->categories as $index => $category) @if ($index > 0) / @endif {{ __('categories.' . $category->name) }} @endforeach | @foreach($shop->areas as $index => $area) @php $subAreas = $shop->subAreas->filter(function ($subArea) use ($area) { return $subArea->area_id === $area->id; }); @endphp {{ $area->name }} @if ($subAreas->isNotEmpty()) ({{ $subAreas->pluck('name')->join(', ') }}) @endif @endforeach | @if($shop->linkToGoogleMap != '') {{ __('general_words.Map' ) }} @endif |
{{ $shops->onEachSide(2)->links() }}