Guest User

Untitled

a guest
Nov 9th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Order extends Model
  5. {
  6. protected $table = "orders";
  7. public function room()
  8. {
  9. return $this->hasOne('App\room','id','room_id');
  10. }
  11. }
Add Comment
Please, Sign In to add comment