ZetniKovjek
After update using Section Component gives TypeError
And this is the page/create:
<?php
declare(strict_types=1);
namespace App\Filament\Resources\TaxRebateResource\Pages;
use App\Filament\Resources\TaxRebateResource;
use Filament\Resources\Pages\CreateRecord;
class CreateTaxRebate extends CreateRecord
{
protected static string $resource = TaxRebateResource::class;
}
24 replies
After update using Section Component gives TypeError
I actually tried it on one of my simplest model.
<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class TaxRebate extends Model
{
use HasFactory;
protected $fillable = [
'year',
'rate_first_tier',
'rate_second_tier',
'rate_third_tier',
'ex_tax',
];
}
24 replies
After update using Section Component gives TypeError
This is the flare URL:
https://flareapp.io/share/v5pxlZA5
24 replies