CodepadME / laravel-tricks

The source code for the Laravel Tricks website
http://laravel-tricks.com
MIT License
966 stars 298 forks source link

Add some tests #37

Closed assertchris closed 10 years ago

assertchris commented 10 years ago

Note the difference here: https://github.com/CodepadME/laravel-tricks/pull/37/files#diff-c42293f391bba0be8621880a6ef5c4dcR58

$profile->user = $user;
$profile->save();

vs.

$user->profile()->save($profile);
stidges commented 10 years ago

Thanks!