ok
Direktori : /proc/thread-self/root/home2/selectio/www/limpiar.in.net/install/app/Models/ |
Current File : //proc/thread-self/root/home2/selectio/www/limpiar.in.net/install/app/Models/AuctionProductBid.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class AuctionProductBid extends Model { public function product(){ return $this->belongsTo(Product::class); } public function user() { return $this->belongsTo(User::class); } }