@extends('layouts.backend.app')
@section('title', 'Cars')
@section('content')
| Name |
Avatar |
Model |
Year |
Available |
Hourly Price |
Actions |
@foreach ($cars as $car)
| {{ $car->name }} |
}}) |
{{ $car->model }} |
{{ $car->year }} |
@if($car->is_available)Yes@else No @endif |
{{ $car->hourly_price }} RM |
|
@endforeach
@endsection
@section('scripts')
@endsection