← Back to blog

Five packages doing the heavy lifting

Admin · Jumat, 31 Juli 2026
Laravel Fortify handles authentication (login, registration, password reset, email verification) without locking the app into any particular frontend. Livewire 4 and Flux UI power every authenticated page -- the dashboard, the blog editor, user management -- so almost none of it needed hand-written JavaScript. spatie/laravel-permission gives every new user a member role automatically, with admin unlocking the back office. spatie/laravel-activitylog records what actually happened: who created a post, who changed a role, who logged in. It's the audit trail behind /admin/activity. spatie/laravel-sluggable generates this post's URL from its title once, and never touches it again after that -- so editing a title later never breaks a link someone already bookmarked.