13.7.1
Corrects the install instructions added in 13.7.0.
Fixed
- 13.7.0 added
php artisan migrateto the steps printed aftertablar:install, but put it beforetablar:export-auth. The migrations are published bytablar:export-auth, not by the installer, so running migrate at that point had nothing to apply and you were still left with two pending migrations. Since the installer also adds theSoftDeletestrait to yourUsermodel, the first person to register still hit a 500 withUnknown column 'users.deleted_at'.
The order is now tablar:export-auth, then php artisan migrate, then the npm steps. tablar:export-auth also prints the migrate reminder itself, since it is the command that writes the files.
If you installed with 13.7.0 and followed the printed steps, check for pending migrations:
php artisan migrate:status
php artisan migrate
Requires PHP 8.3+, Laravel 12 or 13, Node 20.19+.
composer update takielias/tablar