Sindbad~EG File Manager

Current Path : /proc/2302468/cwd/plugins/fluentform/app/Models/
Upload File :
Current File : //proc/2302468/cwd/plugins/fluentform/app/Models/Scheduler.php

<?php

namespace FluentForm\App\Models;

class Scheduler extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'ff_scheduled_actions';

    /**
     * A formMeta is owned by a form.
     *
     * @return \FluentForm\Framework\Database\Orm\Relations\BelongsTo
     */
    public function form()
    {
        return $this->belongsTo(Form::class, 'form_id', 'id');
    }

    /**
     * A schedule action is owned by a submission.
     *
     * @return \FluentForm\Framework\Database\Orm\Relations\BelongsTo
     */
    public function submission()
    {
        return $this->belongsTo(Submission::class, 'origin_id', 'id');
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists