php - How to put a row_number expression in laravel eloquent

one text

Solution:

As of Laravel 8.17.0, there is no Eloquent method to set SQL variable. You will have to use the DB::raw() or DB::statement() function

Source