Skip to content

Commit

Permalink
add services
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Oct 10, 2024
1 parent 7711815 commit 73df8d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 0 additions & 5 deletions app/Filament/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@

namespace App\Filament\Resources;

use App\Domains\Accounts\AccountTypeEnum;
use App\Filament\Resources\UserResource\Pages;
use App\Models\Team;
use App\Models\User;
use Filament\Forms;
use Filament\Forms\Form;
use Filament\Resources\Resource;
use Filament\Tables;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Log;
use Rawilk\FilamentPasswordInput\Password;
Expand Down Expand Up @@ -76,8 +73,6 @@ public static function form(Form $form): Form
]);
}



public static function table(Table $table): Table
{
return $table
Expand Down
1 change: 0 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace App\Providers;

use App\Models\User;
use Illuminate\Support\ServiceProvider;
use Opcodes\LogViewer\Facades\LogViewer;

Expand Down
9 changes: 9 additions & 0 deletions app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ public function panel(Panel $panel): Panel
->group('System')
->icon('heroicon-o-adjustments-horizontal')
->url('/horizon'),
NavigationItem::make('Logs')
->group('System')
->icon('heroicon-o-academic-cap')
->url('/log-viewer'),
NavigationItem::make('Telescope')
->group('System')
->icon('heroicon-o-bolt')
->url('/telescope'),

])
->middleware([
EncryptCookies::class,
Expand Down

0 comments on commit 73df8d3

Please sign in to comment.