added a help system, replaced the words "tenant" and "Pwa" with better alternatives. corrected and implemented cron jobs. prepared going live on a coolify-powered system.
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace App\Filament\Resources\PhotoboothSettings\Tables;
|
||||
|
||||
use Filament\Tables;
|
||||
use Filament\Tables\Table;
|
||||
|
||||
class PhotoboothSettingsTable
|
||||
{
|
||||
public static function configure(Table $table): Table
|
||||
{
|
||||
return $table
|
||||
->columns([
|
||||
Tables\Columns\TextColumn::make('ftp_port')
|
||||
->label(__('Port'))
|
||||
->sortable(),
|
||||
Tables\Columns\TextColumn::make('rate_limit_per_minute')
|
||||
->label(__('Uploads/Minute'))
|
||||
->sortable(),
|
||||
Tables\Columns\TextColumn::make('expiry_grace_days')
|
||||
->label(__('Ablauf +Tage'))
|
||||
->sortable(),
|
||||
Tables\Columns\IconColumn::make('require_ftps')
|
||||
->label(__('FTPS'))
|
||||
->boolean(),
|
||||
Tables\Columns\TextColumn::make('updated_at')
|
||||
->since()
|
||||
->label(__('Aktualisiert')),
|
||||
])
|
||||
->recordActions([
|
||||
Tables\Actions\EditAction::make(),
|
||||
])
|
||||
->headerActions([])
|
||||
->bulkActions([]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user