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

File "DatabaseSeeder.php"

Full Path: /home/sibcards/public_html/database/seeders/DatabaseSeeder.php
File size: 798 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Database\Seeders;
use Illuminate\Database\Seeder;
use App\Models\Utility;
use Illuminate\Support\Facades\Artisan;

class DatabaseSeeder extends Seeder
{
    /**
     * Seed the application's database.
     *
     * @return void
     */
    public function run()
    {
        if(\Request::route()->getName()!='LaravelUpdater::database')
        {
            $this->call(UsersTableSeeder::class);
            $this->call(PlansTableSeeder::class);
            $this->call(AiTemplateSeeder::class);
            $this->call(NFCDataSeeder::class);
            $this->call(CategoryTableSeeder::class);
            Artisan::call('module:migrate LandingPage');
            Artisan::call('module:seed LandingPage');
        }else{
            Utility::languagecreate();
        }

    }
}