Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created June 28, 2017 22:09
Show Gist options
  • Save anthonybudd/051afa22161673f90200a897b5eb29d1 to your computer and use it in GitHub Desktop.
Save anthonybudd/051afa22161673f90200a897b5eb29d1 to your computer and use it in GitHub Desktop.
<?php
$product = new Product;
dump($product->new);
$product = Product::find(3);
dump($product->new);
$product->color = 'red';
dump($product->dirty);
$product->save();
dump($product->dirty);
dump($product->title);
dump($product->content);
dump($product->the_content);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment