Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

get from table laravel

$users = DB::table('users')->get();
 
foreach ($users as $user) {
    echo $user->name;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #table #laravel
ADD COMMENT
Topic
Name
2+4 =