Actualizacion de Diseño Logins y Parte de Registro Negocios
This commit is contained in:
14
desarrollo/app/Models/SellerPackageTranslation.php
Normal file
14
desarrollo/app/Models/SellerPackageTranslation.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SellerPackageTranslation extends Model
|
||||
{
|
||||
protected $fillable = ['name', 'lang', 'seller_package_id'];
|
||||
|
||||
public function seller_package(){
|
||||
return $this->belongsTo(SellerPackage::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user