%PDF- %PDF-
Direktori : /var/www/html/diaspora/api/app/Models/ |
Current File : /var/www/html/diaspora/api/app/Models/PushQueue.php |
<?php namespace App\Models; /** * @property integer id * @property integer post_id * @property integer country_id * @property Device device * @property Post post * @property mixed send_at */ class PushQueue extends BaseModel { protected $table = 'push_queue'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'send_at', ]; protected $guarded = [ 'device_id', 'post_id', ]; public function device() { return $this->belongsTo(Device::class); } public function post() { return $this->belongsTo(Post::class); } }