Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/medad.corals.io/Corals/modules/Medad/Models/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/medad.corals.io/Corals/modules/Medad/Models/Vehicle.php
<?php

namespace Corals\Modules\Medad\Models;

use Corals\Foundation\Models\BaseModel;
use Corals\Foundation\Transformers\PresentableTrait;
use Corals\Modules\Utility\Models\ListOfValue\ListOfValue;
use Spatie\Activitylog\Traits\LogsActivity;

class Vehicle extends BaseModel
{
    use PresentableTrait, LogsActivity;

    protected $formModalConfig = ['size' => 'modal-lg'];


    /**
     *  Model configuration.
     * @var string
     */
    public $config = 'medad.models.vehicle';


    protected $table = 'medad_vehicles';


    protected $casts = [
        'properties' => 'json',
    ];

    protected $guarded = ['id'];

    public function company()
    {
        return $this->belongsTo(Company::class, 'company_id', 'id');
    }

    public function vehicleServices()
    {
        return $this->hasMany(VehicleService::class, 'vehicle_id', 'id');
    }


    public function vehicleModel()
    {
        return $this->belongsTo(ListOfValue::class, 'model_code', 'code');
    }

    public function vehicleMake()
    {
        return $this->belongsTo(ListOfValue::class, 'make_code', 'code');
    }

    public function vehicleDrivers()
    {
        return $this->hasMany(VehicleDriver::class);
    }

    public function currentVehicleDriver()
    {
        return $this->vehicleDrivers()->whereNull('end_date')->limit(1);
    }

}

Spamworldpro Mini