Answers for "laravel all records have id of 0"

PHP
2

Laravel get only the Ids of an eloquent arrays

$post_ids = Post::pluck('id')->toArray();
Posted by: Guest on July-18-2021
0

how to get all the records with same ID in laravel

Product::orderBy('id','desc')->where('category_id', 1)->get();
Posted by: Guest on October-19-2020

Code answers related to "laravel all records have id of 0"

Browse Popular Code Answers by Language