forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\Attachment
|
|
*
|
|
* @property int $id
|
|
* @property string $title
|
|
* @property string $file
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment whereFile($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment whereTitle($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Attachment whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Attachment extends Model
|
|
{
|
|
use HasFactory;
|
|
}
|