mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-18 15:05:03 +08:00
88 lines
2.8 KiB
PHP
88 lines
2.8 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament\Resources\User;
|
||
|
|
|
||
|
|
use App\Filament\Resources\User\LoginLogResource\Pages;
|
||
|
|
use App\Filament\Resources\User\LoginLogResource\RelationManagers;
|
||
|
|
use App\Models\LoginLog;
|
||
|
|
use Filament\Forms;
|
||
|
|
use Filament\Resources\Form;
|
||
|
|
use Filament\Resources\Resource;
|
||
|
|
use Filament\Resources\Table;
|
||
|
|
use Filament\Tables;
|
||
|
|
use Illuminate\Database\Eloquent\Builder;
|
||
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||
|
|
|
||
|
|
class LoginLogResource extends Resource
|
||
|
|
{
|
||
|
|
protected static ?string $model = LoginLog::class;
|
||
|
|
|
||
|
|
protected static ?string $navigationIcon = 'heroicon-o-collection';
|
||
|
|
|
||
|
|
protected static ?string $navigationGroup = 'User';
|
||
|
|
|
||
|
|
protected static ?int $navigationSort = 9;
|
||
|
|
|
||
|
|
protected static function getNavigationLabel(): string
|
||
|
|
{
|
||
|
|
return __('admin.sidebar.login_log');
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function getBreadcrumb(): string
|
||
|
|
{
|
||
|
|
return self::getNavigationLabel();
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function form(Form $form): Form
|
||
|
|
{
|
||
|
|
return $form
|
||
|
|
->schema([
|
||
|
|
//
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function table(Table $table): Table
|
||
|
|
{
|
||
|
|
return $table
|
||
|
|
->columns([
|
||
|
|
Tables\Columns\TextColumn::make('id')->sortable(),
|
||
|
|
Tables\Columns\TextColumn::make('uid')
|
||
|
|
->formatStateUsing(fn ($state) => username_for_admin($state))
|
||
|
|
->label(__('label.username'))
|
||
|
|
,
|
||
|
|
Tables\Columns\TextColumn::make('ip')->searchable(),
|
||
|
|
Tables\Columns\TextColumn::make('country')->label(__('label.country'))->searchable(),
|
||
|
|
Tables\Columns\TextColumn::make('city')->label(__('label.city'))->searchable(),
|
||
|
|
Tables\Columns\TextColumn::make('client')->label(__('label.client')),
|
||
|
|
Tables\Columns\TextColumn::make('created_at')->label(__('label.created_at')),
|
||
|
|
])
|
||
|
|
->defaultSort('id', 'desc')
|
||
|
|
->filters([
|
||
|
|
Tables\Filters\Filter::make('uid')
|
||
|
|
->form([
|
||
|
|
Forms\Components\TextInput::make('uid')
|
||
|
|
->label(__('label.username'))
|
||
|
|
->placeholder('UID')
|
||
|
|
,
|
||
|
|
])->query(function (Builder $query, array $data) {
|
||
|
|
return $query->when($data['uid'], fn (Builder $query, $value) => $query->where("uid", $value));
|
||
|
|
})
|
||
|
|
,
|
||
|
|
])
|
||
|
|
->actions([
|
||
|
|
// Tables\Actions\EditAction::make(),
|
||
|
|
// Tables\Actions\DeleteAction::make(),
|
||
|
|
])
|
||
|
|
->bulkActions([
|
||
|
|
// Tables\Actions\DeleteBulkAction::make(),
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function getPages(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'index' => Pages\ManageLoginLogs::route('/'),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|