gustavo.dev
gustavo.dev
FFilament
Created by niels on 9/7/2024 in #❓┊help
FIleUpload infinitely loading after "Create"
6 replies
FFilament
Created by niels on 9/7/2024 in #❓┊help
FIleUpload infinitely loading after "Create"
php artisan storage:link
6 replies
FFilament
Created by Jure on 7/9/2024 in #❓┊help
FileUpload 401 (Unauthorized)
Could you please help me
19 replies
FFilament
Created by Jure on 7/9/2024 in #❓┊help
FileUpload 401 (Unauthorized)
No description
19 replies
FFilament
Created by Jure on 7/9/2024 in #❓┊help
FileUpload 401 (Unauthorized)
Hi!
19 replies
FFilament
Created by marsep95 on 7/29/2024 in #❓┊help
FileUpload fails on Mozilla Firefox but works on every other browser
I have the same problem
11 replies
FFilament
Created by marsep95 on 7/29/2024 in #❓┊help
FileUpload fails on Mozilla Firefox but works on every other browser
Hi, did you manage to solve the problem?
11 replies
FFilament
Created by momostafa on 7/14/2024 in #❓┊help
How to save Reverb Broadcasted notifications to database?
Hi! You can use this method to save the record in the database.
->sendToDatabase
->sendToDatabase
Here is the link to the documentation. https://filamentphp.com/docs/3.x/notifications/database-notifications#sending-database-notifications
4 replies
FFilament
Created by Albert Lens on 7/10/2024 in #❓┊help
$record->relationship->fieldData not working
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Actions\Action;
use App\Models\Persona;

TextColumn::make('interviniente.tipoExpediente')
->label('TipoExp');

Action::make('redirect')
->url(fn (Persona $record) => match($record->interviniente->tipoExpediente) {
'Herencia' => url('expedientes-herencia/' . $record->id),
'Compra-Venta' => url('expedientes-compra-venta/' . $record->id),
default => url('expedientes/' . $record->id),
});
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Actions\Action;
use App\Models\Persona;

TextColumn::make('interviniente.tipoExpediente')
->label('TipoExp');

Action::make('redirect')
->url(fn (Persona $record) => match($record->interviniente->tipoExpediente) {
'Herencia' => url('expedientes-herencia/' . $record->id),
'Compra-Venta' => url('expedientes-compra-venta/' . $record->id),
default => url('expedientes/' . $record->id),
});
2 replies
FFilament
Created by Kurodox on 7/12/2024 in #❓┊help
How do i change my Heading Title?
public static function getNavigationLabel(): string
{
return __('Proveedores');
}

public static function getModelLabel(): string
{
return __('Proveedor');
}

public static function getPluralModelLabel(): string
{
return __('Proveedores');
}
public static function getNavigationLabel(): string
{
return __('Proveedores');
}

public static function getModelLabel(): string
{
return __('Proveedor');
}

public static function getPluralModelLabel(): string
{
return __('Proveedores');
}
5 replies
FFilament
Created by janibek on 4/28/2024 in #❓┊help
Actions pop showing on server too large width
php artisan optimize:
5 replies
FFilament
Created by janibek on 4/28/2024 in #❓┊help
Actions pop showing on server too large width
php artisan view:clear
5 replies
FFilament
Created by gustavo.dev on 1/12/2024 in #❓┊help
Input masking
But how can I add this regular expression /^[0-9kK]*$/ because it doesn't seem to work?
6 replies
FFilament
Created by AlexAnder on 3/24/2023 in #❓┊help
Repeater in repeater eager load
FileUpload
26 replies
FFilament
Created by gustavo.dev on 7/6/2023 in #❓┊help
Wizard
I have two forms in each step, so I want to save each form in each step, how can I do it? for only until the end let me save the form
6 replies
FFilament
Created by gustavo.dev on 7/6/2023 in #❓┊help
Wizard
protected function getSteps(): array
{
return [
Step::make('Nombre del beneficio')
// ->description('Give the category a clear and unique name')
->schema(
BonusesDiscountsResource::getFormSchema('0')
),
Step::make('Agregar empleados')
->schema([

Card::make()
->columnSpan('full')
->schema(
// BonusesDiscountsResource::getFormSchema('1')
BonusesDiscountsResource::getFormSchemaThere()
),


]
),

];
}
protected function getSteps(): array
{
return [
Step::make('Nombre del beneficio')
// ->description('Give the category a clear and unique name')
->schema(
BonusesDiscountsResource::getFormSchema('0')
),
Step::make('Agregar empleados')
->schema([

Card::make()
->columnSpan('full')
->schema(
// BonusesDiscountsResource::getFormSchema('1')
BonusesDiscountsResource::getFormSchemaThere()
),


]
),

];
}
6 replies
FFilament
Created by gustavo.dev on 7/6/2023 in #❓┊help
Wizard
yes
6 replies
FFilament
Created by Ander on 7/4/2023 in #❓┊help
position of repeater
->grid([
'default' => 1,
'md' => 2,
'xl' => 3,
'2xl' => 4,
])
->grid([
'default' => 1,
'md' => 2,
'xl' => 3,
'2xl' => 4,
])
6 replies
FFilament
Created by Ander on 6/20/2023 in #❓┊help
FileUpload - it shows me this error: No such file or directory
help my friend
11 replies