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
71
### switchable()
92
72
93
73
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.
Version 2.x supports filament 4.x and is not compatible with filament 3.x. Below are the breaking changes:
6
+
7
+
- The [columns](https://github.com/DutchCodingCompany/filament-developer-logins/tree/1.10.0?tab=readme-ov-file#columns) feature has been removed. If you were using it you need to remove it from the plugin configuration.
8
+
9
+
That's it! If you find any bugs please let me know.
0 commit comments