%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/diaspora/api_internal/app/Models/
Upload File :
Create Path :
Current File : /var/www/html/diaspora/api_internal/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);
    }


}



Zerion Mini Shell 1.0