{{-- resources/views/customer/agency/sections/tours-grid.blade.php --}}
@if($section->title || $section->subtitle)
@if($section->subtitle)

{{ $section->subtitle }}

@endif @if($section->title)

{{ $section->title }}

@endif
@endif
@php $limit = $section->getConfig('tour_limit', 6); $tours = \App\Models\Tour\Tour::where('agency_id', $agency->id) ->active() ->public() ->bookable() ->limit($limit) ->get(); @endphp @foreach($tours as $tour)
@if($tour->cover_image_url) {{ $tour->name }} @endif

{{ $tour->name }}

@if($tour->short_description)

{{ Str::limit($tour->short_description, 100) }}

@endif
@if($tour->days) {{ $tour->days }} Gün @endif
{{ $tour->formatted_price }}
Detayları Gör
@endforeach