nicko170
nicko170
FFilament
Created by @nasilemak on 1/24/2024 in #❓┊help
Can I pass in a filament resource's form into createOptionsForm()?
Formatting on mobile sucks sorry!
7 replies
FFilament
Created by @nasilemak on 1/24/2024 in #❓┊help
Can I pass in a filament resource's form into createOptionsForm()?
Forms\Components\Select::make('region_id') ->relationship('region', 'name') ->label('Region') ->required() ->createOptionForm(fn(Form $form) => RegionResource::form($form)) ->searchable()->preload(),
7 replies
FFilament
Created by @nasilemak on 1/24/2024 in #❓┊help
Can I pass in a filament resource's form into createOptionsForm()?
You absolutely can do it!
7 replies
FFilament
Created by tim.lalev on 1/20/2024 in #❓┊help
Slide Over Broken on safari mobile
Found another one for you @Zep Fietje slide overs on iOS also not happy 😭
9 replies
FFilament
Created by tim.lalev on 1/20/2024 in #❓┊help
Slide Over Broken on safari mobile
That slide over in your example is missing the close button and header on both safari and chrome - so it’s totally busted
9 replies
FFilament
Created by tim.lalev on 1/20/2024 in #❓┊help
Slide Over Broken on safari mobile
It’s messed up here too, just going through the whole thing on mobile - there’s heaps that isn’t working. Zeps got a bug for one of them logged.
9 replies
FFilament
Created by nicko170 on 1/6/2024 in #❓┊help
Minimal Theme iOS scrolling issue
Hey @Zep Fietje , you were right, it's absolutely an issue with core not minimal theme. I've logged a bug with a fresh project linked for you. https://github.com/filamentphp/filament/issues/10915
8 replies
FFilament
Created by nicko170 on 1/6/2024 in #❓┊help
Minimal Theme iOS scrolling issue
Hey @Zep Fietje - the bottom of the scroll bar in chrome on iOS just doesn’t work when there are quite a few resources, you just can’t see the last couple of items in there and you can’t scroll to them! I’ll see if I can reproduce it in a new installation today
8 replies
FFilament
Created by nicko170 on 1/6/2024 in #❓┊help
Minimal Theme iOS scrolling issue
Just minimal
8 replies
FFilament
Created by lancodev on 8/14/2023 in #❓┊help
Allow resources to bypass tenancy
Stick that on the resource. I don't allow create / edit of them etc, and the modal to request more added to the global table doesn't use filament to save the response - so it works.
8 replies
FFilament
Created by lancodev on 8/14/2023 in #❓┊help
Allow resources to bypass tenancy
This works perfectly @lancodev
public static function getEloquentQuery(): Builder
{
// Bypass tenant middleware for this
return static::getModel()::query();
}
public static function getEloquentQuery(): Builder
{
// Bypass tenant middleware for this
return static::getModel()::query();
}
8 replies