Files
ProxyPanel/app/Http/Models/Article.php
Bretton 7fa56ada16 2.1 版本
1. 框架更新至5.8,并且其涉及代码进行修改;
2.  对支付的alipay组件针对php7.2/3进行修改;
3. 重构了节点信息获取逻辑;现在为实时请求;
4. 代码小细节和命名规范
2020-08-05 03:20:24 +08:00

62 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Http\Models;
use Eloquent;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Query\Builder;
use Illuminate\Support\Carbon;
/**
* 文章
* Class Article
*
* @package App\Http\Models
* @mixin Eloquent
* @property int $id
* @property string $title 标题
* @property string|null $author 作者
* @property string|null $summary 简介
* @property string|null $logo LOGO
* @property string|null $content 内容
* @property int|null $type 类型1-文章、2-公告、3-购买说明、4-使用教程
* @property int $sort 排序
* @property Carbon|null $created_at 创建时间
* @property Carbon|null $updated_at 最后更新时间
* @property Carbon|null $deleted_at 删除时间
* @method static bool|null forceDelete()
* @method static \Illuminate\Database\Eloquent\Builder|Article newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Article newQuery()
* @method static Builder|Article onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Article query()
* @method static bool|null restore()
* @method static \Illuminate\Database\Eloquent\Builder|Article type($type)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereAuthor($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereLogo($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereSort($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereSummary($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereUpdatedAt($value)
* @method static Builder|Article withTrashed()
* @method static Builder|Article withoutTrashed()
*/
class Article extends Model
{
use SoftDeletes;
protected $table = 'article';
protected $primaryKey = 'id';
protected $dates = ['deleted_at'];
// 筛选类型
function scopeType($query, $type)
{
return $query->where('type', $type);
}
}