Answers for "distinct laravel not working"

PHP
0

distinct laravel not working

$outgoings = Invoice::where('customerID', $id)
                    ->groupBy('invoiceNumber')
                    ->get();
This will work but....

Have to follow this to false strict
https://stackoverflow.com/questions/40917189/laravel-syntax-error-or-access-violation-1055-error
Posted by: Guest on February-11-2022

Code answers related to "distinct laravel not working"

Browse Popular Code Answers by Language