ocram82
ocram82
FFilament
Created by ocram82 on 2/13/2025 in #❓┊help
email-verification-prompt view customization
yes i do, but i discover that to customize that page you just have to add a <div> or a <section> and put the html you want. Something like this:
<section class="grid auto-cols-fr gap-y-6">

<h1 class="fi-simple-header-heading text-center text-2xl font-bold tracking-tight text-gray-950 dark:text-white">
Title here
</h1>
<p class="text-center font-bold text-sm text-gray-500 dark:text-gray-400">
Text here
</p>
</section>
<section class="grid auto-cols-fr gap-y-6">

<h1 class="fi-simple-header-heading text-center text-2xl font-bold tracking-tight text-gray-950 dark:text-white">
Title here
</h1>
<p class="text-center font-bold text-sm text-gray-500 dark:text-gray-400">
Text here
</p>
</section>
and all works
3 replies
FFilament
Created by ocram82 on 2/7/2025 in #❓┊help
Route [filament.admin.auth.email-verification.verify] not defined.
on each panel sounds weird...i'll try but i dont think is the cleanest solution
11 replies
FFilament
Created by ocram82 on 2/7/2025 in #❓┊help
Route [filament.admin.auth.email-verification.verify] not defined.
This is My Register Class, what's wrong here?
11 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
hi Bruno! i've just create a Custom Page but it can be possibile only inside a panel. I want this page outside the login. I need this like a landing page, a register page. Not under login protection. I don't know if i'm explaing well sorry
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
ok i'll try tomorrow and i give a feedback. Thanks a lot for now
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
do you mean this https://filamentphp.com/docs/3.x/panels/resources/custom-pages ? But i need that page outside the admin panel
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
that page should be outside the admin login
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
ok, thanks, so what's the proper way to build a landing page using Filament layout?
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
when i navigate the link it all works but i can't use a layout because i've the errors before
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
i've not Page class here. I 've a controller and a route bindend in web.php like this: Route::get('/invites/register/{token}', [InviteController::class, 'show'])->name('invites.register'); in the show method of controller i do this:
function show($token)
{
return view('invite.show', compact('token'));
}
function show($token)
{
return view('invite.show', compact('token'));
}
and inside invite.show
<livewire:invite-register :token="$token" />
<livewire:invite-register :token="$token" />
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
outside
26 replies
FFilament
Created by ocram82 on 2/5/2025 in #❓┊help
Filament layout to livewire component
i try both:
<x-filament-panels::layout.base>
....
</x-filament-panels::layout.base>
<x-filament-panels::layout.base>
....
</x-filament-panels::layout.base>
with error: is "Call to a member function getRenderHookScopes() on null" and
<x-filament-panels::page>
....
</x-filament-panels::page>
<x-filament-panels::page>
....
</x-filament-panels::page>
with error: Method App\Livewire\InviteRegister::getCachedSubNavigation does not exist.
26 replies
FFilament
Created by ocram82 on 2/4/2025 in #❓┊help
ExportBulkAction don't work with selected record
More info from this: the problem seems to be the selection above, if i not remove the string in the input search i obtain only the last selected export row. If i remove that string i can export all the rows...it's a bug?
3 replies
FFilament
Created by pgferro on 9/17/2024 in #❓┊help
Persistent search selections on table
any solutions to this? I've the same problem
4 replies
FFilament
Created by ocram82 on 10/1/2024 in #❓┊help
Wizard Get $get select multiple value based on filed
Little update: i notice that if i remove ->relationship('users') from
Wizard\Step::make('Empoyes')
->schema([
Forms\Components\Select::make('users')
->relationship('users')
->label('Empoyes')
Wizard\Step::make('Empoyes')
->schema([
Forms\Components\Select::make('users')
->relationship('users')
->label('Empoyes')
it works on create but not in view or edit
4 replies
FFilament
Created by ocram82 on 10/1/2024 in #❓┊help
Wizard Get $get select multiple value based on filed
# continue from previous message


Wizard\Step::make('Coordinator')
->schema([
Forms\Components\Select::make('coordinator_id')
->label('Coordinator')
->options(function (Get $get) {

$companyIds = $get('companies');

if (empty($companyIds)) {
return [];
}

return User::whereIn('company_id', $companyIds)
->selectRaw("CONCAT(first_name, ' ', last_name) as full_name, id")
->pluck('full_name', 'id')
->toArray();
})
->required(),
]),
Wizard\Step::make('Empoyes')
->schema([
Forms\Components\Select::make('users')
->relationship('users')
->label('Empoyes')
->multiple()
->options(function (Get $get) {

$companyIds = $get('companies');

return User::whereIn('company_id', $companyIds)
->selectRaw("CONCAT(first_name, ' ', last_name) as full_name, id")
->pluck('full_name', 'id')
->toArray();
}),
]),
# continue from previous message


Wizard\Step::make('Coordinator')
->schema([
Forms\Components\Select::make('coordinator_id')
->label('Coordinator')
->options(function (Get $get) {

$companyIds = $get('companies');

if (empty($companyIds)) {
return [];
}

return User::whereIn('company_id', $companyIds)
->selectRaw("CONCAT(first_name, ' ', last_name) as full_name, id")
->pluck('full_name', 'id')
->toArray();
})
->required(),
]),
Wizard\Step::make('Empoyes')
->schema([
Forms\Components\Select::make('users')
->relationship('users')
->label('Empoyes')
->multiple()
->options(function (Get $get) {

$companyIds = $get('companies');

return User::whereIn('company_id', $companyIds)
->selectRaw("CONCAT(first_name, ' ', last_name) as full_name, id")
->pluck('full_name', 'id')
->toArray();
}),
]),
I don't know why inside Empoyes Wizard step the list of companies is not loaded and in the Coordinator wizard step yes
4 replies
FFilament
Created by ocram82 on 9/20/2024 in #❓┊help
Disable view action when click on row
it solve the case
11 replies
FFilament
Created by ocram82 on 9/20/2024 in #❓┊help
Disable view action when click on row
good! thnks a lot
11 replies
FFilament
Created by ocram82 on 9/20/2024 in #❓┊help
Disable view action when click on row
Ok, try to explain better: in my table when i click on a row, i mean not in a particular column but in every part of the single row, it causes the open of the modal view record. It's clear this? Ok i want to disable this behavior, I want when I click on the row the modal window not to open. It's more clear now?
11 replies
FFilament
Created by ocram82 on 9/20/2024 in #❓┊help
Disable view action when click on row
Thanks, but i 'd want the opposite behaviour: i want to disable "rows to be completely clickable"
11 replies