WaiterTables.php 336 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WaiterTables extends Model
  5. {
  6. //
  7. public function waiters(){
  8. return $this->belongsTo('App\Models\Waiters','waiter_id','id');
  9. }
  10. public function tables(){
  11. return $this->belongsTo('App\Models\RestoTables','table_id','id');
  12. }
  13. }