love_php/app/Models/Rbac/Route.php
2026-04-02 09:20:51 +08:00

22 lines
335 B
PHP

<?php
namespace App\Models\Rbac;
use Illuminate\Database\Eloquent\Model;
class Route extends Model
{
protected $table = 'admin_route';
public function route()
{
return $this->hasMany(Route::class, 'parent_id');
}
public function children(){
return $this->route()->with('children');
}
}