30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Class Tmp
|
|
*
|
|
* @package App\Models
|
|
* @property int $id
|
|
* @property string|null $name
|
|
* @property string|null $value
|
|
* @property string|null $content
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp whereContent($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp whereName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Tmp whereValue($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Tmp extends AbstractModel
|
|
{
|
|
|
|
}
|