例子: <?php interface Middleware{ public static function handle (Closure $next);} class VerifyCsrfToken implements Middleware{ public static function handle(Closure $next){ echo "验证Csrf-Token"."<br/>"; $next(); }}class ShareErro…
public function field() { return $this->belongsTo(HrmAuthFieldsModel::class, 'filed_id', 'id'); } public function children() { return $this->hasMany(HrmAuthFuncFieldsModel::class, 'father_id'); } public function getIsEmptyAttribute() { if (count($th…