Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active June 29, 2017 13:09
Show Gist options
  • Save anthonybudd/f7acd30eae263527960068180bd00703 to your computer and use it in GitHub Desktop.
Save anthonybudd/f7acd30eae263527960068180bd00703 to your computer and use it in GitHub Desktop.
<?php
$product = new Product();
$product->color = 'white';
$product->weight = 300;
$product->title = 'the post title';
$product->content = 'the post content';
$product->save();
dump($product);
$product = new Product([
'color' => 'red',
'weight' => '250'
]);
$product->save();
dump($product);
$product = Product::insert([
'color' => 'blue',
'weight' => '250'
]);
dd($product);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment