Laravel Onboard is a Laravel package to help track user onboarding steps created by Spatie:Here's a quick example taken from the project readme on using this package to create onboarding steps: 1use App\User; 2use Spatie\Onboard\Facades\Onboard; 3 4// You can add onboarding steps in a `boot()` method within...
17 August, 2022
Add Comments to Correlate User Code with SQL Queries in Laravel
Programing Coderfunda
August 17, 2022
Laravel, Packages
No comments
Laravel SQL Commenter is a package by Spatie to add comments to SQL queries made by Laravel. It uses sqlcommenter to augment SQL statements about the code:1/* typical query */2select * from users3 4/* comments added by this package */5select * from "users"/*controller='UsersController',action='index'*/;Once...