mithyy
mithyy
FFilament
Created by mithyy on 3/11/2025 in #❓┊help
The code that works locally does not work in production
Hello, when I add the following code to my table, it always resets to the default state. It works fine locally, but in production, it always defaults. I am using the same database. Is there anyone who can help with solving this problem?
// Table column
return $table->columns([
Tables\Columns\TextColumn::make("admin_approval")
->label("Stok Onayı")
->color(
fn($state) => match ($state) {
0 => "warning",
1 => "success",
default => "default",
}
)
->formatStateUsing(
fn($state) => match ($state) {
0 => "false text",
1 => "true text",
default => "default text",
}
)
->sortable()
->badge(),
]);

// Migration
$table->boolean('admin_approval')->default(0)->after('status');

// MySql query
mysql> SELECT DISTINCT admin_approval FROM orders;
+----------------+
| admin_approval |
+----------------+
| 0 |
| 1 |
+----------------+

// laravel.log
[2025-03-11 10:30:29] production.ERROR: Unhandled match case '0' (View: /home/.../app/Filament/Pages/OrderList.php:175)
[previous exception] [object] (UnhandledMatchError(code: 0): Unhandled match case '0' at /home/.../public_html/app/Filament/Pages/OrderList.php:175)
// Table column
return $table->columns([
Tables\Columns\TextColumn::make("admin_approval")
->label("Stok Onayı")
->color(
fn($state) => match ($state) {
0 => "warning",
1 => "success",
default => "default",
}
)
->formatStateUsing(
fn($state) => match ($state) {
0 => "false text",
1 => "true text",
default => "default text",
}
)
->sortable()
->badge(),
]);

// Migration
$table->boolean('admin_approval')->default(0)->after('status');

// MySql query
mysql> SELECT DISTINCT admin_approval FROM orders;
+----------------+
| admin_approval |
+----------------+
| 0 |
| 1 |
+----------------+

// laravel.log
[2025-03-11 10:30:29] production.ERROR: Unhandled match case '0' (View: /home/.../app/Filament/Pages/OrderList.php:175)
[previous exception] [object] (UnhandledMatchError(code: 0): Unhandled match case '0' at /home/.../public_html/app/Filament/Pages/OrderList.php:175)
5 replies
FFilament
Created by mithyy on 1/28/2025 in #❓┊help
How can I center the navigation bar at the top?
No description
4 replies
FFilament
Created by mithyy on 12/13/2024 in #❓┊help
Class "Filament\Forms\Components\Datepicker" not found
No description
4 replies
FFilament
Created by mithyy on 10/31/2024 in #❓┊help
Run JavaScript code after the page loads
Hi, I'm using the latest version of Filament. In my project, I need to run a JavaScript code (variable) in Blade when a button is clicked. I will use it as simply as in the codes below. How can I make it work?
<?php

namespace App\Filament\Pages;

use Filament\Pages\Page;
use Iyzipay\Options;

class SubscribePage extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static ?string $navigationLabel = 'Subscribe';
protected static string $view = 'filament.pages.subscribe-page';

public $checkoutForm = null;

public function startCheckoutForm()
{
$this->checkoutForm = "<script>alert('here')</script>";
}

public function subscribe() {}
}
<?php

namespace App\Filament\Pages;

use Filament\Pages\Page;
use Iyzipay\Options;

class SubscribePage extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static ?string $navigationLabel = 'Subscribe';
protected static string $view = 'filament.pages.subscribe-page';

public $checkoutForm = null;

public function startCheckoutForm()
{
$this->checkoutForm = "<script>alert('here')</script>";
}

public function subscribe() {}
}
<x-filament::page>
<x-filament::fieldset>
<x-filament::button icon="heroicon-m-credit-card" icon-position="after" class="mt-3"
wire:click="startCheckoutForm">
Subscribe
</x-filament::button>

<div class="mt-4 p-4 bg-green-100 border border-green-200 text-green-700">
{!! $checkoutForm !!}
</div>
</x-filament::fieldset>
</x-filament::page>
<x-filament::page>
<x-filament::fieldset>
<x-filament::button icon="heroicon-m-credit-card" icon-position="after" class="mt-3"
wire:click="startCheckoutForm">
Subscribe
</x-filament::button>

<div class="mt-4 p-4 bg-green-100 border border-green-200 text-green-700">
{!! $checkoutForm !!}
</div>
</x-filament::fieldset>
</x-filament::page>
After clicking the button, the JavaScript code appears within the HTML code, but it doesn’t run because it’s loaded afterward.
6 replies
FFilament
Created by mithyy on 8/27/2024 in #❓┊help
Performing action on resource view event
Hello, I have a ContactResource. It contains data from the contact form and is saved as is_read=false by default. I want to make is_read=true when this resource is opened with view in the admin panel. How can I do this? In the documentation https://filamentphp.com/docs/3.x/panels/resources/viewing-records I couldn't find anything related to what I want to do on this page, or I didn't understand it.
6 replies