• The default language of any content posted is English.
ClanVent - Inventory with POS & Accounts Management System

ClanVent - Inventory with POS & Accounts Management System 3.3 NULLED

raz0r

owner
Staff member
Administrator
Moderator
Messages
16,387
Reactions
62,439
raz0r submitted a new resource:

ClanVent - Inventory with POS and Accounts Management System - Download ClanVent Inventory with POS and Accounts Management System | Codecanyon 34897071

View attachment 11244

ClanVent NULLED is an Inventory Management System that allows you to manage your inventory in a more efficient way and maximize on the business potentials. From SME to large enterprises managing the inventory is always a challenge to overcome. ClanVent can solve all of those problems and tick the right boxes to ensure productivity is achieved for the users who would potentially be benefitted from this...

Read more about this resource...
 
wow...
amazing. thanks you very much.

edit.

i'm sorry, cannot install


 

Attachments

  • screen-capture.gif
    screen-capture.gif
    1.2 MB · Views: 11
Last edited:
C:\laragon\www\clanvent33\app\Http\Middleware\InstallCheckMiddleware.php

edited

PHP:
<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Schema;
use DB;

class InstallCheckMiddleware
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse)  $next
     * @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
     */
    public function handle(Request $request, Closure $next)
    {
        try {
            DB::connection()->getPdo();
        } catch (\Exception $e) {
            return redirect('install/initialize')->with('error', 'Could not find MySQL driver or Connection is Not Established');
        }

        if (Schema::hasTable('system_settings') && Schema::hasTable('users') && isInstalled()) {
            return $next($request);
        }

        return $next($request);
    }
}
 
C:\laragon\www\clanvent33\app\Http\Middleware\InstallCheckMiddleware.php

edited

PHP:
<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Schema;
use DB;

class InstallCheckMiddleware
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse)  $next
     * @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
     */
    public function handle(Request $request, Closure $next)
    {
        try {
            DB::connection()->getPdo();
        } catch (\Exception $e) {
            return redirect('install/initialize')->with('error', 'Could not find MySQL driver or Connection is Not Established');
        }

        if (Schema::hasTable('system_settings') && Schema::hasTable('users') && isInstalled()) {
            return $next($request);
        }

        return $next($request);
    }
}
thanks.
i will try it
 
Top