Skip to content

Instantly share code, notes, and snippets.

@nwaughachukwuma
Last active March 28, 2020 21:44
Show Gist options
  • Save nwaughachukwuma/216977de737680063cbb61af0e44025e to your computer and use it in GitHub Desktop.
Save nwaughachukwuma/216977de737680063cbb61af0e44025e to your computer and use it in GitHub Desktop.
A photo model with it's relationships
<?
use Illuminate\Database\Eloquent\Model;
class Photo extends Model
{
public function user()
{
return $this->belongsTo('\App\User');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment