Blame view
app/Models/MessagesRequests.php
609 Bytes
a67c9d7ef Массовая рассылка... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class MessagesRequests extends Model { use HasFactory; protected $fillable = [ 'user_id', 'job_titles', 'text', 'is_rejected', 'is_sent' ]; |
633ea705f Массовая рассылка... |
19 20 21 22 23 24 25 26 27 28 |
public function getJobsAttribute() { $job_titles_ids = json_decode($this->attributes['job_titles'], true); return Job_title::whereIn('id', $job_titles_ids)->get(); } public function user() { return $this->belongsTo(User::class, 'user_id'); } |
a67c9d7ef Массовая рассылка... |
29 |
} |