@extends('layouts.app') @section('content')
Vehicles
Add Vehicle
@if($vehicles->count() > 0) @foreach($vehicles as $vehicle) @endforeach
Image Name Seating Price/KM Driver Fee Services Actions
@if($vehicle->image) {{ $vehicle->name }} @else No Image @endif {{ $vehicle->name }} {{ $vehicle->seating_capacity }} ₹{{ $vehicle->price_per_km }} ₹{{ $vehicle->driver_fee }} {{ $vehicle->services }}
@else
No Vehicles Yet

Create your first vehicle to manage taxi services.

@endif
@endsection @section('scripts') @endsection