Advertisement
Device-Cheat

orm laravel

Apr 24th, 2020
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2. // app/Post.php
  3. namespace App;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Post extends Model
  8. {
  9.     public function author()
  10.     {
  11.         return $this->belongsTo('App\User', 'author_id');
  12.     }
  13. }
  14.  
  15.  
  16.  
  17. http://github.com/shfx17
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement