Skip to content

Instantly share code, notes, and snippets.

@eimkasp
Created March 10, 2020 15:50
Show Gist options
  • Save eimkasp/849ac02efb4cb0922fb322f45d89e1b0 to your computer and use it in GitHub Desktop.
Save eimkasp/849ac02efb4cb0922fb322f45d89e1b0 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class NewsItem extends Model
{
//
protected $table = 'news_items';
public function author() {
return $this->hasOne('App\User', 'id', 'user_id');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment