AAAsfia Aimaninasfiaaiman.hashnode.dev·Mar 21, 2025 · 5 min readWriting Your Own Eloquent Builder in LaravelCreating a custom Eloquent Builder is a powerful way to extend Laravel's query capabilities and encapsulate complex query logic. This approach helps keep your code clean and maintainable while providing a fluent interface for your specific applicatio...00
MHmhdy hasaninphp-basics-revisions.hashnode.dev·Apr 26, 2024 · 6 min readQuery-builder-in-laravelnotes 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'); ...00