46 lines
911 B
PHP
46 lines
911 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class SubmitTool
|
|
*
|
|
* @property int $id
|
|
* @property string $submit_type
|
|
* @property string $submitted_url
|
|
* @property string $email
|
|
* @property string|null $social
|
|
* @property string|null $social_type
|
|
* @property string|null $source
|
|
* @property string|null $source_type
|
|
* @property string|null $comments
|
|
* @property string $status
|
|
* @property string $queue_priority
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*/
|
|
class SubmitTool extends Model
|
|
{
|
|
protected $table = 'submit_tools';
|
|
|
|
protected $fillable = [
|
|
'submit_type',
|
|
'submitted_url',
|
|
'email',
|
|
'social',
|
|
'social_type',
|
|
'source',
|
|
'source_type',
|
|
'comments',
|
|
'status',
|
|
'queue_priority',
|
|
];
|
|
}
|