Advertisement
Guest User

Company

a guest
Apr 22nd, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Company extends Model
  8. {
  9.     public function user()
  10.     {
  11.         return $this->belongsToMany(User::class);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement