JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr gilour

File "QRSetting.php"

Full Path: /home/sibcards/public_html/app/Models/QRSetting.php
File size: 366 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class QRSetting extends Model
{
    use HasFactory;
    protected $fillable = [
        'type',
        'json',
        'slug',
        'total_scan',
        'template_id',
        'created_by'
    ];
    protected $table = 'qrsettings';
}