mirror of https://github.com/4xmen/xshop.git
18 lines
355 B
PHTML
18 lines
355 B
PHTML
7 months ago
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Question extends Model
|
||
|
{
|
||
|
// use HasFactory;
|
||
|
public function product(){
|
||
|
return $this->belongsTo(Product::class);
|
||
|
}
|
||
|
public function customer(){
|
||
|
return $this->belongsTo(Customer::class);
|
||
|
}
|
||
|
}
|