laravel insert record code example
Example 1: laravel insert
DB::table('users')->insert([
'email' => '[email protected]',
'votes' => 0
]);
Example 2: laravel find query
$model = App\Models\Flight::where('legs', '>', 100)->firstOr(function () {
// ...
});
Example 3: create new record via model in laravel
$userData = array('username' => 'Me', 'email' => '[email protected]');
User::create($userData);