Adnan Yalahow
Adnan Yalahow
FFilament
Created by abdullafahem on 9/25/2024 in #❓┊help
Sticky Action Column
will you mind share with us please i would love to do it too
17 replies
FFilament
Created by Enas on 9/25/2024 in #❓┊help
Split in table
Tables\Columns\Layout\Split::make([
Tables\Columns\ImageColumn::make('image')
->grow(false)->circular(),
Tables\Columns\Layout\Stack::make([
Tables\Columns\TextColumn::make('name')
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('email'),
])
])
Tables\Columns\Layout\Split::make([
Tables\Columns\ImageColumn::make('image')
->grow(false)->circular(),
Tables\Columns\Layout\Stack::make([
Tables\Columns\TextColumn::make('name')
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('email'),
])
])
4 replies
FFilament
Created by EMMAN on 9/25/2024 in #❓┊help
Dropdown Shadow on Components
nav.fi-tabs{ @apply !!shadow-lg; }
5 replies
FFilament
Created by EMMAN on 9/25/2024 in #❓┊help
Dropdown Shadow on Components
in your custom theme .fi-ta { @apply !shadow-lg; }
5 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
so this is what I have done
$agent = new Agent();

return $table
->columns(
$agent->isDesktop()
? static::getListTableColumns()
: static::getGridTableColumns()
)
->contentGrid(
fn() => $agent->isDesktop()
? null
: [
'default' => 2,
'sm' => 2,
'md' => 3,
'lg' => 1,
]
)
$agent = new Agent();

return $table
->columns(
$agent->isDesktop()
? static::getListTableColumns()
: static::getGridTableColumns()
)
->contentGrid(
fn() => $agent->isDesktop()
? null
: [
'default' => 2,
'sm' => 2,
'md' => 3,
'lg' => 1,
]
)
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
I figured out a laravel package called Agent https://github.com/jenssegers/agent
18 replies
FFilament
Created by abdullafahem on 9/19/2024 in #❓┊help
Listing in Resource
Great🙂
10 replies
FFilament
Created by abdullafahem on 9/19/2024 in #❓┊help
Listing in Resource
i don't know if this would help but in your list resource you can call this function
public static function canAccess(array $parameters = []): bool
{
return false;
}
public static function canAccess(array $parameters = []): bool
{
return false;
}
10 replies
FFilament
Created by abdullafahem on 9/19/2024 in #❓┊help
Listing in Resource
what is your goal?
10 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
Yeah, I see it.
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
This is cool. but in every row you see Name: label. So, I will just use icons instead thank for the help
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
Thanks I appreciate you trying to help
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
any idea on displaying column headings when screen is bigger🤔
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
No description
18 replies
FFilament
Created by Adnan Yalahow on 9/14/2024 in #❓┊help
Table columns
i have tried this approach and it really works well but when the screen is big table headings are hidden
18 replies
FFilament
Created by MZX on 9/14/2024 in #❓┊help
Make the table a grid of cards instead.
you can display records in grid
8 replies
FFilament
Created by MZX on 9/14/2024 in #❓┊help
Make the table a grid of cards instead.
8 replies