You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To customize the grid layout, you can use the columns() method. This method allows you to configure the grid layout based on your needs.
67
-
68
-
By default, the columns() method sets the grid to 2 columns. You can adjust the default column count or specify different column counts for different screen sizes by passing an array.
69
-
70
-
Example:
71
-
72
-
```php
73
-
// ...
74
-
FilamentDeveloperLoginsPlugin::make()
75
-
->columns() // default 2
76
-
```
77
-
78
-
or you can use an array like this
79
-
80
-
```php
81
-
// ...
82
-
FilamentDeveloperLoginsPlugin::make()
83
-
->columns([
84
-
'sm' => 3,
85
-
'xl' => 6,
86
-
'2xl' => 8,
87
-
])
88
-
```
89
-
90
-
91
64
### switchable()
92
65
93
66
By default, a "Switch to" button is shown in the top right corner of the screen, so you can easily switch between the provided users.
0 commit comments