Last active
June 29, 2017 13:09
-
-
Save anthonybudd/f7acd30eae263527960068180bd00703 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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