22 lines
494 B
PHP
22 lines
494 B
PHP
<?php
|
||
|
||
namespace App\Traits;
|
||
|
||
use App\Scopes\OrderByIdDescScope;
|
||
|
||
trait OrderByIdDesc
|
||
{
|
||
/**
|
||
* Notes: 初始化trait,自动在模型中,注入作用域
|
||
* 需要对拥有排序的模型,不需要使用排序的时候
|
||
* Model::withoutGlobalScope(new OrderByIdDescScope)
|
||
*
|
||
* @Author: <C.Jason>
|
||
* @Date : 2020/1/19 1:42 下午
|
||
*/
|
||
public static function bootOrderByIdDesc(): void
|
||
{
|
||
static::addGlobalScope(new OrderByIdDescScope);
|
||
}
|
||
}
|