EmployerAutoliftOption.php 629 Bytes
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;

/**
 * @property int $employer_id
 * @property int $times_per_day
 * @property int $days_repeat
 * @property string $time_send_first
 * @property string $time_send_second
 * @property string $time_send_third
 * @property string $time_send_tg
 * @property bool $is_enabled
*/
class EmployerAutoliftOption extends Model
{
    protected $guarded = [
        'created_at',
        'updated_at'
    ];

    public function employer(): BelongsTo
    {
        return $this->belongsTo(Employer::class);
    }
}