How to add Dropdown in Filament laravel widget #15964
Unanswered
Shubii8760
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Panel builder
Package Version
3.2
How can we help you?
`<?php
namespace App\Filament\Resources\AccountResource\Widgets;
use Illuminate\Support\Carbon;
use Filament\Forms\Components\Select;
use App\Filament\Resources\AccountResource;
use Filament\Widgets\StatsOverviewWidget\Stat;
use Filament\Widgets\StatsOverviewWidget as BaseWidget;
class AccountStats extends BaseWidget
{
protected ?string $heading = 'Account Statistics';
}`
I am using Filament Laravel, and I created a widget where I want to add a dropdown similar to the one I made in Nova. Previously, I made this in Nova, but in Filament, it's not showing. Do you have any ideas on how to do this in Filament Laravel?

Beta Was this translation helpful? Give feedback.
All reactions