43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Exports;
|
|
|
|
use App\Models\User;
|
|
use Filament\Actions\Exports\ExportColumn;
|
|
use Filament\Actions\Exports\Exporter;
|
|
use Filament\Actions\Exports\Models\Export;
|
|
use Illuminate\Support\Number;
|
|
|
|
class UserExporter extends Exporter
|
|
{
|
|
protected static ?string $model = User::class;
|
|
|
|
public static function getColumns(): array
|
|
{
|
|
return [
|
|
ExportColumn::make('id')
|
|
->label('ID'),
|
|
ExportColumn::make('name')
|
|
->label(__('users.fields.name')),
|
|
ExportColumn::make('username')
|
|
->label(__('users.fields.username')),
|
|
ExportColumn::make('roles.name')
|
|
->label(__('users.fields.roles'))
|
|
->listAsJson(),
|
|
ExportColumn::make('created_at')
|
|
->label(__('users.fields.created_at')),
|
|
];
|
|
}
|
|
|
|
public static function getCompletedNotificationBody(Export $export): string
|
|
{
|
|
$body = 'Your user export has completed and ' . Number::format($export->successful_rows) . ' ' . str('row')->plural($export->successful_rows) . ' exported.';
|
|
|
|
if ($failedRowsCount = $export->getFailedRowsCount()) {
|
|
$body .= ' ' . Number::format($failedRowsCount) . ' ' . str('row')->plural($failedRowsCount) . ' failed to export.';
|
|
}
|
|
|
|
return $body;
|
|
}
|
|
}
|