Query-builder-in-laravel
notes for some essential query builder methods.
we will use users and posts table for applying q-builder methods
user table :
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
...
php-basics-revisions.hashnode.dev6 min read