repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/AdminPermission.php | app/AdminPermission.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
class AdminPermission extends Model
{
protected $fillable = ['name', 'routes'];
//
public function roles()
{
return $this->belongsToMany(AdminRole::class);
}
protected function setRoutesAt... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/AdminMenu.php | app/AdminMenu.php | <?php
namespace App;
use App\Scopes\SortScope;
use Illuminate\Database\Eloquent\Model;
class AdminMenu extends Model
{
protected $fillable = ['name', 'url', 'icon', 'sort', 'pid'];
protected static function boot()
{
parent::boot();
static::addGlobalScope(new SortScope);
}
//
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/AdminRole.php | app/AdminRole.php | <?php
namespace App;
use App\AdminUser;
use Illuminate\Database\Eloquent\Model;
class AdminRole extends Model
{
//
protected $fillable = ['name', 'description'];
public function users()
{
return $this->belongsToMany(AdminUser::class);
}
public function menus()
{
return $... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/AdminConfig.php | app/AdminConfig.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AdminConfig extends Model
{
protected $fillable = ['name', 'config_key', 'config_value', 'type'];
//
public static function getValue($key)
{
$instance = new static;
if (is_array($key)) {
$result = $instance... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Scopes/SortScope.php | app/Scopes/SortScope.php | <?php
namespace App\Scopes;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Scope;
class SortScope implements Scope
{
/**
* 排序约束
*
* @param \Illuminate\Database\Eloquent\Builder $builder
* @param \Illuminate\Database\Eloque... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Exceptions/Handler.php | app/Exceptions/Handler.php | <?php
namespace App\Exceptions;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Support\Facades\Config;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontRepo... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Kernel.php | app/Http/Kernel.php | <?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array
*/
protected $middleware =... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Controllers/Controller.php | app/Http/Controllers/Controller.php | <?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
class Controller extends BaseController
{
use AuthorizesReques... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Controllers/InstallController.php | app/Http/Controllers/InstallController.php | <?php
namespace App\Http\Controllers;
use App\AdminUser;
use App\Utility\Install;
use Illuminate\Container\Container;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Route;
class InstallController extends Controller
{
const DE... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Controllers/Admin/AdministratorController.php | app/Http/Controllers/Admin/AdministratorController.php | <?php
/**
* Created by PhpStorm.
* Author: woann <304550409@qq.com>
* Date: 18-10-26下午1:23
* Desc: 管理员
*/
namespace App\Http\Controllers\Admin;
use App\AdminMenu;
use App\AdminPermission;
use App\AdminRole;
use App\AdminUser;
use App\Http\Controllers\Controller;
use App\Utility\Rbac;
use Illuminate\Http\Request;
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Controllers/Admin/IndexController.php | app/Http/Controllers/Admin/IndexController.php | <?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Storage;
class IndexController extends Controller
{
public function index()
{
$admin = session('admin');
$menuList = $admin->getMenus();
return view('admin.index', ['me... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Controllers/Admin/ConfigController.php | app/Http/Controllers/Admin/ConfigController.php | <?php
namespace App\Http\Controllers\Admin;
use App\AdminConfig;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class ConfigController extends Controller
{
/**
* @Desc: 配置列表
* @Author: woann <304550409@qq.com>
* @param Request $request
* @return \Illuminate\View\View
*/... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/CheckInstall.php | app/Http/Middleware/CheckInstall.php | <?php
namespace App\Http\Middleware;
use App\Utility\Install;
use Closure;
use Illuminate\Container\Container;
class CheckInstall
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handl... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/Rbac.php | app/Http/Middleware/Rbac.php | <?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Route;
class Rbac
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null $guard
* @return mixed
*/
public function h... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/Authenticate.php | app/Http/Middleware/Authenticate.php | <?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string
*/
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/RedirectIfAuthenticated.php | app/Http/Middleware/RedirectIfAuthenticated.php | <?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Auth;
class RedirectIfAuthenticated
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null $guard
* @return mixed
*/
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/TrustProxies.php | app/Http/Middleware/TrustProxies.php | <?php
namespace App\Http\Middleware;
use Illuminate\Http\Request;
use Fideloper\Proxy\TrustProxies as Middleware;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array
*/
protected $proxies;
/**
* The headers that should be used t... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/CheckSession.php | app/Http/Middleware/CheckSession.php | <?php
namespace App\Http\Middleware;
use App\AdminUser;
use Closure;
class CheckSession
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
i... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/TrimStrings.php | app/Http/Middleware/TrimStrings.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
class TrimStrings extends Middleware
{
/**
* The names of the attributes that should not be trimmed.
*
* @var array
*/
protected $except = [
'password',
'password_conf... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/CheckForMaintenanceMode.php | app/Http/Middleware/CheckForMaintenanceMode.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
class CheckForMaintenanceMode extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/EncryptCookies.php | app/Http/Middleware/EncryptCookies.php | <?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
class EncryptCookies extends Middleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Http/Middleware/VerifyCsrfToken.php | app/Http/Middleware/VerifyCsrfToken.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
*
* @var bool
*/
protected $addHttpCookie = true;
/**
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Console/Kernel.php | app/Console/Kernel.php | <?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Utility/Rbac.php | app/Utility/Rbac.php | <?php
namespace App\Utility;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Route;
class Rbac
{
public static function getAllRoutes(): Collection
{
return (new Collection(Route::getRoutes()))
->filter(function ($route) {
$actions = $route->getAction();
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Utility/Install.php | app/Utility/Install.php | <?php
namespace App\Utility;
use Dotenv\Dotenv;
use Illuminate\Container\Container;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Storage;
class Install
{
const INSTALL_FILE = '.' . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'install.lock';
public static function hasLock()
{... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Utility/functions.php | app/Utility/functions.php | <?php
use App\AdminConfig;
function validateURL($URL)
{
$pattern = "/^(?:([A-Za-z]+):)?(\/{0,3})([0-9.\-A-Za-z]+)(?::(\d+))?(?:\/([^?#]*))?(?:\?([^#]*))?(?:#(.*))?$/";
if (preg_match($pattern, $URL)) {
return true;
} else {
return false;
}
}
/**
* @Desc: 获取配置值
* @Author: woann <30455... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Providers/BroadcastServiceProvider.php | app/Providers/BroadcastServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Broadcast;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Providers/RouteServiceProvider.php | app/Providers/RouteServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as th... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Providers/EventServiceProvider.php | app/Providers/EventServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/*... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Providers/AppServiceProvider.php | app/Providers/AppServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
Schema::defaultStr... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/app/Providers/AuthServiceProvider.php | app/Providers/AuthServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies ... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/bootstrap/app.php | bootstrap/app.php | <?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of La... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/tests/TestCase.php | tests/TestCase.php | <?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}
| php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/tests/CreatesApplication.php | tests/CreatesApplication.php | <?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/tests/Feature/ExampleTest.php | tests/Feature/ExampleTest.php | <?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertS... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/tests/Unit/ExampleTest.php | tests/Unit/ExampleTest.php | <?php
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}
| php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/routes/web.php | routes/web.php | <?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the Route... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/routes/api.php | routes/api.php | <?php
$router->post('/set_callback_url', 'Admin\VideoController@setCallbackUrl');
| php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/public/index.php | public/index.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|------------------------------------... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/app.php | config/app.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to plac... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/logging.php | config/logging.php | <?php
use Monolog\Handler\StreamHandler;
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that gets used whe... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/session.php | config/session.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be used on
| requests. By defau... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/queue.php | config/queue.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Connection Name
|--------------------------------------------------------------------------
|
| Laravel's queue API supports an assortment of back-ends via a single
| API, giving y... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/cache.php | config/cache.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching li... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/hashing.php | config/hashing.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Hash Driver
|--------------------------------------------------------------------------
|
| This option controls the default hash driver that will be used to hash
| passwords for your ap... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/view.php | config/view.php | <?php
return [
/*
|--------------------------------------------------------------------------
| View Storage Paths
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/database.php | config/database.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/services.php | config/services.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, ... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/filesystems.php | config/filesystems.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. T... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/mail.php | config/mail.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Mail Driver
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may s... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/user.php | config/user.php | <?php
return [
]; | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/broadcasting.php | config/broadcasting.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an even... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/config/auth.php | config/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for y... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/seeds/RbacSeeder.php | database/seeds/RbacSeeder.php | <?php
use App\AdminPermission;
use App\AdminRole;
use App\AdminUser;
use App\Utility\Rbac;
use Illuminate\Database\Seeder;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Route;
class RbacSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public fun... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/seeds/AdminConfigsTableSeeder.php | database/seeds/AdminConfigsTableSeeder.php | <?php
use App\AdminConfig;
use Illuminate\Database\Seeder;
class AdminConfigsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
//
$adminConfig = new AdminConfig();
$adminConfig->fill([
'name' ... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/seeds/DatabaseSeeder.php | database/seeds/DatabaseSeeder.php | <?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call([
RbacSeeder::class,
AdminConfigsTableSeeder::class,
]);
}
}
| php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/factories/UserFactory.php | database/factories/UserFactory.php | <?php
use Faker\Generator as Faker;
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| This directory should contain each of the model factory definitions for
| your application. Factories pro... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_122313_create_admin_permission_admin_role.php | database/migrations/2019_02_25_122313_create_admin_permission_admin_role.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminPermissionAdminRole extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('adm... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_121505_create_admin_menu_admin_role.php | database/migrations/2019_02_25_121505_create_admin_menu_admin_role.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminMenuAdminRole extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_men... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_112304_create_admin_menus_table.php | database/migrations/2019_02_25_112304_create_admin_menus_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminMenusTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_menus'... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_112454_create_admin_configs_table.php | database/migrations/2019_02_25_112454_create_admin_configs_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminConfigsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_conf... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_103116_create_admin_roles_table.php | database/migrations/2019_02_25_103116_create_admin_roles_table.php | <?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateAdminRolesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_roles'... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_111309_create_admin_role_admin_user.php | database/migrations/2019_02_25_111309_create_admin_role_admin_user.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminRoleAdminUser extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_rol... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_100017_create_admin_users_table.php | database/migrations/2019_02_25_100017_create_admin_users_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_users'... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/database/migrations/2019_02_25_113053_create_admin_permissions_table.php | database/migrations/2019_02_25_113053_create_admin_permissions_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAdminPermissionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admin_... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/lang/en/passwords.php | resources/lang/en/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are gi... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/lang/en/pagination.php | resources/lang/en/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pag... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/lang/en/validation.php | resources/lang/en/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator ... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/lang/en/auth.php | resources/lang/en/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages t... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/base/install.blade.php | resources/views/base/install.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="csrf-token" content="{{ csrf_token() }}" />
<title>安装</title>
<link rel="stylesheet" href="{{ asset('assets/vendors/iconfonts/mdi/css/mat... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/base/403.blade.php | resources/views/base/403.blade.php | @extends('base.base')
@section('base')
<div class="container-scroller">
<div class="container-fluid page-body-wrapper full-page-wrapper">
<div class="content-wrapper d-flex align-items-center text-center error-page bg-info">
<div class="row flex-grow">
<div class="col-lg-7 mx-aut... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/base/base.blade.php | resources/views/base/base.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="csrf-token" content="{{ csrf_token() }}" />
<title>管理控制台</title>
<!-- plugins:css -->
<link rel="stylesheet" href="... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/base/404.blade.php | resources/views/base/404.blade.php | @extends('base.base')
@section('base')
<div class="container-scroller">
<div class="container-fluid page-body-wrapper full-page-wrapper">
<div class="content-wrapper d-flex align-items-center text-center error-page bg-info">
<div class="row flex-grow">
<div cl... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/administrator_add.blade.php | resources/views/admin/administrator_add.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/login.blade.php | resources/views/admin/login.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="csrf-token" content="{{ csrf_token() }}" />
<title>登录</title>
<link rel="stylesheet" href="/assets/vendors/iconfonts/mdi/css/materialdesignicons.mi... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/console.blade.php | resources/views/admin/console.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
<span class="page-title-icon bg-gradient-primary text-white mr-2">
<i class="mdi mdi-hom... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/icon.blade.php | resources/views/admin/icon.blade.php | @extends('base.base')
@section('base')
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
Icons
</h3>
<nav aria-label="breadcrumb">
<ol class="breadcrumb... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | true |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/permission_update.blade.php | resources/views/admin/permission_update.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/config_add.blade.php | resources/views/admin/config_add.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/index.blade.php | resources/views/admin/index.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>管理控制台</title>
<!-- plugins:css -->
<link rel="stylesheet" href="/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/role_update.blade.php | resources/views/admin/role_update.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/permission_add.blade.php | resources/views/admin/permission_add.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/menu_update.blade.php | resources/views/admin/menu_update.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/role.blade.php | resources/views/admin/role.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
<span class="page-title-icon bg-gradient-primary text-white mr-2">
<i class="mdi ... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/permission.blade.php | resources/views/admin/permission.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
<span class="page-title-icon bg-gradient-primary text-white mr-2">
<i cla... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/menu.blade.php | resources/views/admin/menu.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
<span class="page-title-icon bg-gradient-primary text-white mr-2">
<i clas... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/edit_info.blade.php | resources/views/admin/edit_info.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/administrator_update.blade.php | resources/views/admin/administrator_update.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/role_add.blade.php | resources/views/admin/role_add.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/config_update.blade.php | resources/views/admin/config_update.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/administrator.blade.php | resources/views/admin/administrator.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
<span class="page-title-icon bg-gradient-primary text-white mr-2">
<i clas... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/config.blade.php | resources/views/admin/config.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
<span class="page-title-icon bg-gradient-primary text-white mr-2">
<i cla... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
woann/yamecent-admin | https://github.com/woann/yamecent-admin/blob/3ca32f67185386e2b2e6cf361831a18ebcc94c0f/resources/views/admin/menu_add.blade.php | resources/views/admin/menu_add.blade.php | @extends('base.base')
@section('base')
<!-- 内容区域 -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
... | php | MIT | 3ca32f67185386e2b2e6cf361831a18ebcc94c0f | 2026-01-05T05:21:26.903260Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/FilamentMenuBuilderPlugin.php | src/FilamentMenuBuilderPlugin.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder;
use Closure;
use Datlechin\FilamentMenuBuilder\Contracts\MenuPanel;
use Datlechin\FilamentMenuBuilder\Models\Menu;
use Datlechin\FilamentMenuBuilder\Models\MenuItem;
use Datlechin\FilamentMenuBuilder\Models\MenuLocation;
use Datlechin\FilamentMe... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/FilamentMenuBuilderServiceProvider.php | src/FilamentMenuBuilderServiceProvider.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder;
use Datlechin\FilamentMenuBuilder\Livewire\CreateCustomLink;
use Datlechin\FilamentMenuBuilder\Livewire\CreateCustomText;
use Datlechin\FilamentMenuBuilder\Livewire\MenuItems;
use Datlechin\FilamentMenuBuilder\Livewire\MenuPanel;
use Filament\Su... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/Livewire/CreateCustomLink.php | src/Livewire/CreateCustomLink.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder\Livewire;
use Datlechin\FilamentMenuBuilder\Enums\LinkTarget;
use Datlechin\FilamentMenuBuilder\Models\Menu;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Concerns\InteractsWithForms;
use Filame... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/Livewire/MenuPanel.php | src/Livewire/MenuPanel.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder\Livewire;
use Datlechin\FilamentMenuBuilder\Contracts\MenuPanel as ContractsMenuPanel;
use Datlechin\FilamentMenuBuilder\Models\Menu;
use Filament\Forms\Components;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Contracts\HasF... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/Livewire/CreateCustomText.php | src/Livewire/CreateCustomText.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder\Livewire;
use Datlechin\FilamentMenuBuilder\Models\Menu;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Contracts\HasForms;
use Filament\Forms\Form;
use Filament\Notifications\Notificat... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/Livewire/MenuItems.php | src/Livewire/MenuItems.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder\Livewire;
use Datlechin\FilamentMenuBuilder\Concerns\ManagesMenuItemHierarchy;
use Datlechin\FilamentMenuBuilder\Enums\LinkTarget;
use Datlechin\FilamentMenuBuilder\FilamentMenuBuilderPlugin;
use Datlechin\FilamentMenuBuilder\Models\Menu;
use Fil... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
datlechin/filament-menu-builder | https://github.com/datlechin/filament-menu-builder/blob/9e1236f11a11419d4e226cac9ba2d59fa122f084/src/MenuPanel/ModelMenuPanel.php | src/MenuPanel/ModelMenuPanel.php | <?php
declare(strict_types=1);
namespace Datlechin\FilamentMenuBuilder\MenuPanel;
use Closure;
use Illuminate\Database\Eloquent\Model;
class ModelMenuPanel extends AbstractMenuPanel
{
/**
* @var \Illuminate\Database\Eloquent\Model&\Datlechin\FilamentMenuBuilder\Contracts\MenuPanelable
*/
protected... | php | MIT | 9e1236f11a11419d4e226cac9ba2d59fa122f084 | 2026-01-05T05:21:51.412797Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.