@extends('layout.main') @push('title') Our Taxis- SVT Tour and Travels @endpush @section('main-section')
Our Taxi

Let's Check Available Taxi

@foreach ($taxiData as $taxiRow)
{{$taxiRow->name}}
{{$taxiRow->name}} {{$taxiRow->type}}
  • Taxi Rate: ₹ {{$taxiRow->price}}/Km
  • Passengers: {{$taxiRow->seat}}
  • Luggage Carry: {{$taxiRow->bags}}
  • Air Condition: @if($taxiRow->ac == 1) Yes @else No @endif
  • GPS Navigation: @if($taxiRow->gps == 1) Yes @else No @endif
@endforeach
@endsection