• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

eBroker - Real Estate Property Buy-Rent-Sell Flutter app with Laravel Admin Panel

eBroker - Real Estate Property Buy-Rent-Sell Flutter app with Laravel Admin Panel v1.1.3 Untouched

No permission to download

DeStalker

Active member
Babiato Lover
Sep 5, 2022
199
88
28
alphiejr98 submitted a new resource:

eBroker - Real Estate Property Buy-Rent-Sell Flutter app with Laravel Admin Panel - eBroker - Real Estate Property Buy-Rent-Sell Flutter app with Laravel Admin Panel

( updated on 16-Oct-2023 )

+[New] Introduced a Web Version ( Next.js )
+[New] Provided access to the Figma UI Design file for customization.
+[Added] Guest Mode in the Flutter app for a seamless experience without the need for authentication
+[Security] Data protection with improved security measures.
+[Improvemnets] Dashboard UI with a modern, user-friendly design.

Read more about this resource...
 
1697733025843.png

ADMIN PANEL Nulled needed
/vendor/dacoto/laravel-wizard-installer/src/Controllers/InstallPurchaseController.php

Replace the entire code with


PHP:
<?php

namespace dacoto\LaravelWizardInstaller\Controllers;

use dacoto\SetEnv\Facades\SetEnv;
use Exception;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Contracts\View\Factory;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\DB;
use Illuminate\View\View;

class InstallPurchaseController extends Controller
{
    /**
     * Set database settings
     *
     * @return Application|Factory|RedirectResponse|View
     */
    public function index()
    {
        if ((new InstallServerController())->check() === false || (new InstallFolderController())->check() === false) {
            return redirect()->route('LaravelWizardInstaller::install.folders');
        }
        return view('installer::steps.purchase');
    }

    /**
     * Test database and set keys in .env
     *
     * @param  Request  $request
     * @return Application|Factory|RedirectResponse|View
     */
    public function setPurchase(Request $request)
    {
        try {
            $app_url = (string) url('/');
            $app_url = preg_replace('#^https?://#i', '', $app_url);

            $curl = curl_init();
            curl_setopt_array($curl, array(
                CURLOPT_URL => '#' . $request->input('purchase_code') . '&domain_url=' . $app_url . '',
                CURLOPT_RETURNTRANSFER => true,
                CURLOPT_MAXREDIRS => 10,
                CURLOPT_FOLLOWLOCATION => true,
                CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
                CURLOPT_CUSTOMREQUEST => 'GET',
            ));
            $response = curl_exec($curl);
            curl_close($curl);
            $response = json_decode($response, true);

            SetEnv::setKey('APPSECRET', $request->input('purchase_code'));
            SetEnv::save();
            return redirect()->route('LaravelWizardInstaller::install.database');
        } catch (Exception $e) {
            $values = [
                'purchase_code' => $request->get("purchase_code"),
            ];
            return view('installer::steps.purchase', ['values' => $values, 'error' => $e->getMessage()]);
        }
    }
}
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock