fadlyshafa

Untitled

Feb 21st, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Pesan extends Model
  8. {
  9.     protected $table = 'pesan';
  10.  
  11.     public function users_r(){
  12.         return $this->belongsTo('App\User','users');
  13.     }
  14. }
Add Comment
Please, Sign In to add comment