Table Loading Indicators (New)
If you would like to give your users more feedback when their table is loading, you may enable a loading skeleton overlay by adding the->tableLoadingOverlay() method:
->extraCellAttributes() method, you will need to make sure you pass in true as the second parameter so that your attributes are merged with the plugin’s:
Note: Be sure to runnpm run buildandphp artisan filament:upgradeafter enabling this feature.
User::class
If you are using a User configuration other than Laravel’s default, you should configure these before running your migrations:Configuring the User::class
You may customize theUser::class by passing your custom class to the user() method:
Configuring the users database table
You may customize the users database table by passing the name of your table to theuserTable() method:
Configuring the user name columns
By default, Laravel’s defaultusers table includes a name column which Advanced Tables expects to exist. If you have modified your users table to something such as first_name and last_name you may configure this using the userTableNameColumn() method:
first_name and last_name column, but still wish to show a user’s full name in the User Views Resource, you may create a virtual column to support this:
Configuring the user primary key
If you are set your primary key on yourUser::class model to something other than Laravel’s default id, you should also configure this in Advanced Tables using the userTableKeyColumn() method:
Configuring the authentication guard
By default, Advanced Tables will use whichever authentication guard is set on your Filament panel. If you are using standalone Table Builder, you may set the authentication guard in theadvanced-tables config file:
Language Files
Each text field in Advanced Tables has been added to the language file allowing you to customize the text to better fit your application needs. You can publish the language files with:resources\lang\vendor\advanced-tables directory. Currently 🇺🇸 English, 🇲🇽 Spanish, and 🇫🇷 French translations are available.