Add (ai tool submission)

This commit is contained in:
2023-11-29 21:16:13 +08:00
parent 79326f74f1
commit 7ce1e93242
67 changed files with 686 additions and 474 deletions

45
app/Models/SubmitTool.php Normal file
View 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',
];
}