@extends('frontend.layouts.app') @section('content')
Related Category
@php $categories = App\Models\Boat::where('is_active', 1)->orderBy('priority', 'ASC')->get(); @endphp
@foreach ($categories as $category)
img
{{ $category->name }}

{{ $category->boats->count() }} Boats

@endforeach

{{ $boats->count() }} Boats Found on this Category

@foreach ($boats as $boat)
{{ $boat->name }}
{{ $boat->name }}
{{--

{{ $boat->boat->name }}

--}}

{{ $boat->destination }}

Starts From - ₹{{ $boat->discount_price }} ₹{{ $boat->price }}
Book Now
@endforeach
@endsection