prageeth94
prageeth94
FFilament
Created by gladjanus43 on 7/11/2024 in #❓┊help
Select in custom livewire component with searchable removes wire.model
You saved my day !! Thanks bro 🙏 . $this->form->fill() fixed the weird issue when using select with searchable with a statePath
13 replies
FFilament
Created by prageeth94 on 6/20/2023 in #❓┊help
Any Tips to make a specific Text Column fixed in Table Builder ?
TextColumn::make('something')->extraAttributes(['style' => 'max-width:100px;min-
width:100px;'])
TextColumn::make('something')->extraAttributes(['style' => 'max-width:100px;min-
width:100px;'])
6 replies
FFilament
Created by prageeth94 on 6/20/2023 in #❓┊help
Any Tips to make a specific Text Column fixed in Table Builder ?
@toeknee_iom thanks for ur reply ! But it did not work. did it work for u?
6 replies
FFilament
Created by prageeth94 on 6/14/2023 in #❓┊help
No method named visible in Filament\Navigation\NavigationItem class
sorry ! my mistake. it exists in latest version . Thanks !
10 replies
FFilament
Created by prageeth94 on 6/14/2023 in #❓┊help
No method named visible in Filament\Navigation\NavigationItem class
ok. thanks ! . can you please remove that part from docs? it is misleading
10 replies
FFilament
Created by prageeth94 on 6/8/2023 in #❓┊help
How to register Pages to Filament from Database?
seems like i was going in the wrong direction. easy way to do is create a base page and load content using query parameters
9 replies
FFilament
Created by prageeth94 on 6/8/2023 in #❓┊help
How to register Pages to Filament from Database?
any idea to fix routing issue this way ? it gives 404
9 replies
FFilament
Created by prageeth94 on 6/8/2023 in #❓┊help
How to register Pages to Filament from Database?
Sure. Actually I Just want to create dynamic admin pages. so technically it is not a cms i guess
9 replies
FFilament
Created by prageeth94 on 6/8/2023 in #❓┊help
How to register Pages to Filament from Database?
php
<?php

namespace App\Providers;

use App\Filament\Pages\TestPage;
use Filament\Facades\Filament;
use Filament\Pages\Page;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}

/**
* Bootstrap any application services.
*/
public function boot(): void
{

$page = new class extends Page{


protected static function getNavigationUrl(): string
{
return 'blah-blah';
}

protected static function getNavigationLabel(): string
{
return "Bla Bla Page";
}


};
Filament::registerPages([get_class($page)]);


}
}
php
<?php

namespace App\Providers;

use App\Filament\Pages\TestPage;
use Filament\Facades\Filament;
use Filament\Pages\Page;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}

/**
* Bootstrap any application services.
*/
public function boot(): void
{

$page = new class extends Page{


protected static function getNavigationUrl(): string
{
return 'blah-blah';
}

protected static function getNavigationLabel(): string
{
return "Bla Bla Page";
}


};
Filament::registerPages([get_class($page)]);


}
}
9 replies
FFilament
Created by prageeth94 on 6/8/2023 in #❓┊help
How to register Pages to Filament from Database?
So far this will create new page to a the admin panel
9 replies
FFilament
Created by prageeth94 on 5/26/2023 in #❓┊help
How to automatically call form submit action after the form is rendered?
admin panel
7 replies
FFilament
Created by prageeth94 on 5/26/2023 in #❓┊help
How to automatically call form submit action after the form is rendered?
I have a hidden text that sends to ChatGPT API as a prompt. So when user open up this form it should trigger the submit action and then should fill form fields according to response
7 replies
FFilament
Created by prageeth94 on 4/26/2023 in #❓┊help
How to display a Filament Page to a guest user (Without Log in)?
<x-filament::layouts.base title="Guest Page"> <div class="flex items-center justify-center p-6"> @livewire('add-ticket-form') </div>
</x-filament::layouts.base>
8 replies
FFilament
Created by prageeth94 on 4/26/2023 in #❓┊help
How to display a Filament Page to a guest user (Without Log in)?
Thanks Guys ! There is already filament layout we can use
8 replies
FFilament
Created by prageeth94 on 4/26/2023 in #❓┊help
How to display a Filament Page to a guest user (Without Log in)?
Thanks for your input! If i am to create a guest page how to load filament assets (css) to my guest blade file?
8 replies