| Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/app/Models/ |
| Current File : /home/users/unlimited/www/foodbank.codeskitter.site/app/Models/QrCode.php |
<?php
namespace App\Models;
class QrCode extends BaseModel
{
protected $table = 'qr_codes';
protected $auditColumn = true;
protected $fillable = ['shop_id', 'style', 'eye_style', 'color', 'background_color', 'mode', 'qrcode_text', 'qrcode_logo'];
public function restaurant()
{
return $this->belongsTo(Restaurant::class);
}
}