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

File "userActiveModule.php"

Full Path: /home/sibcards/public_html/app/Models/userActiveModule.php
File size: 432 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 userActiveModule extends Model
{
    use HasFactory;
    protected $table = 'user_module';
    protected $fillable = ['user_id','module','active'];

    public static function getActiveModule()
    {
        return userActiveModule::where('module', '!=', 'QRCode')->where('active',1)->get();
    }
}