Blame view
app/Models/EmployerAutoliftOption.php
629 Bytes
ab181e741 task-132985 autol... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<?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); } } |