2026-02-19 22:05:20 +00:00

21 lines
412 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Car extends Model
{
protected $fillable = ['brand', 'model', 'year', 'license_plate', 'color', 'daily_rate', 'status', 'image', 'mileage', 'notes'];
public function rentals()
{
return $this->hasMany(Rental::class);
}
public function services()
{
return $this->hasMany(Service::class);
}
}