How customize flament tab with realtionship #15965
Unanswered
Shubii8760
asked this question in
Help
Replies: 1 comment
-
|
Maybe you could change |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Package
Panel builder
Package Version
3.2
How can we help you?
` public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\Grid::make(1)
->schema([
Tabs::make('Account Details and Trades')
->tabs([
Tab::make('Account Details')
->schema([
Forms\Components\Select::make('trader_id')
->label('Trader')
->relationship('trader', 'username')
->required(),
This is my account resource class, and the problem I'm facing is that when I view it in the trade tab, I have multiple columns to show, but they are not visible properly. I don't want to use full-screen mode either. How can I fit (11) column properly in one row?

Beta Was this translation helpful? Give feedback.
All reactions