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

File "JoinUs.php"

Full Path: /home/sibcards/public_html/Modules/LandingPage/Entities/JoinUs.php
File size: 401 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Modules\LandingPage\Entities;

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

class JoinUs extends Model
{
    use HasFactory;

    protected $table = 'join_us';

    protected $fillable = ['email'];

    protected static function newFactory()
    {
        return \Modules\LandingPage\Database\factories\JoinUsFactory::new();
    }
}