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