The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database.
I'm trying to get all records that belongs to last month, so far I managed to get all from last …
php mysql laravel eloquent php-carbonI have this invoices table that which has the following structure id | name | amount | deleted_at 2 iMac 1500 | NULL and a …
php laravel laravel-5 eloquent soft-deleteI am new to laravel query builder, I want to search multiple words entered in an input field for example …
php mysql laravel eloquent query-builderI have started working with Laravel4 recently. I am facing some problem while updating pivot table data, in case of …
many-to-many laravel pivot-table laravel-4 eloquentI'm trying to generate a token to authenticate users in my Controller the following way: namespace App\Http\Controllers\API; …
php laravel eloquent laravel-passport laravel-authenticationassuming that I have the table orders with fields id, userId, amount, description and the table user with various fields …
laravel eloquent eager-loadingHi I am developing a rest api endpoint for retrieving paginated list of users. In the frontend, there are options …
laravel laravel-5 eloquent laravel-5.6 laravel-requestThe Problem I would like to automatically add created_by and modified_by fields to every insert/update to a …
php laravel laravel-4 eloquent query-builder