tomatophp/filament-developer-gate 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tomatophp/filament-developer-gate

最新稳定版本:v4.0.0

Composer 安装命令:

composer require tomatophp/filament-developer-gate

包简介

Secure your selected route by using a middleware with static password for developers only

README 文档

README

Screenshot

Filament developer gate

Dependabot Updates PHP Code Styling Tests Latest Stable Version License Downloads

Secure your selected route by using a middleware with static password for developers only

Screenshots

Login Logout Logout Confirm

Installation

composer require tomatophp/filament-developer-gate

finally reigster the plugin on /app/Providers/Filament/AdminPanelProvider.php

$panel->plugin(\TomatoPHP\FilamentDeveloperGate\FilamentDeveloperGatePlugin::make())

Usage

to secure selected resource or page you can use this trait

use TomatoPHP\FilamentDeveloperGate\Traits\InteractWithDeveloperGate;

or you can use the middleware direct on your routes like this

Route::middleware([\TomatoPHP\FilamentDeveloperGate\Http\Middleware\DeveloperGateMiddleware::class])->group(function () {
    Route::get('/dashboard', function () {
        return view('dashboard');
    })->name('dashboard');
});

you can add a logout action button to your page or resource by using this trait

use TomatoPHP\FilamentDeveloperGate\Traits\DeveloperGateLogoutAction;

or you can use direct action like this

use TomatoPHP\FilamentDeveloperGate\Actions\DeveloperLogoutAction;


DeveloperLogoutAction::make();

Publish Assets

you can publish config file by use this command

php artisan vendor:publish --tag="filament-developer-gate-config"

you can publish views file by use this command

php artisan vendor:publish --tag="filament-developer-gate-views"

you can publish languages file by use this command

php artisan vendor:publish --tag="filament-developer-gate-lang"

you can publish migrations file by use this command

php artisan vendor:publish --tag="filament-developer-gate-migrations"

Testing

if you like to run PEST testing just use this command

composer test

Code Style

if you like to fix the code style just use this command

composer format

PHPStan

if you like to check the code by PHPStan just use this command

composer analyse

Other Filament Packages

Checkout our Awesome TomatoPHP

统计信息

  • 总下载量: 88.04k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 2
  • 依赖项目数: 5
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04