Add (ai tool submission)
This commit is contained in:
45
app/Models/SubmitTool.php
Normal file
45
app/Models/SubmitTool.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user