Skip to content

Instantly share code, notes, and snippets.

@Cerwyn
Last active April 15, 2020 02:17
Show Gist options
  • Save Cerwyn/1a3164f5624fe50fe86be45008c1cf69 to your computer and use it in GitHub Desktop.
Save Cerwyn/1a3164f5624fe50fe86be45008c1cf69 to your computer and use it in GitHub Desktop.
One-to-one
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Address extends Model
{
protected $fillable = [
'zip_code', 'country',
];
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