• 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"

Businesso - Business Website SAAS (Multitenancy)

Businesso - Business Website SAAS (Multitenancy) 3.3

No permission to download
It clearly mentioned in the update title (untouched)!! These are the complete and exact files I downloaded from Codecanyon. You can ask the developer why he didn't include the update this time.
ok Not a Big issue ....but as per version log in code it shows the Previous version ( 2.23) not the updated 2.24....can you check if any
 
  • Like
Reactions: Judge
ok Not a Big issue ....but as per version log in code it shows the Previous version ( 2.23) not the updated 2.24....can you check if any
Done. It seems that the dev updated the package on the same day. Thanks for pointing this out!

Regarding nulled version. In the first page there is a nulled old version. Try the same method and hopefully it will work. Sorry, I don't use this script.
 
Done. It seems that the dev updated the package on the same day. Thanks for pointing this out!

Regarding nulled version. In the first page there is a nulled old version. Try the same method and hopefully it will work. Sorry, I don't use this script.
Thanks Once Again , If you share How nuuled it ...it will great for team members ...if you wish too
 
  • Love
Reactions: egytitanic
please help
nginx
location / {
try_files $uri /index.php?$args;
}

location ~ /\.(?!well-known).* {
deny all;
}

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
fastcgi_param SCRIPT_FILENAME
$realpath_root$fastcgi_script_name;
include fastcgi_params;
 

Attachments

  • Screenshot 2023-05-16 070458.png
    Screenshot 2023-05-16 070458.png
    144.3 KB · Views: 25
  • Screenshot 2023-05-16 082905.png
    Screenshot 2023-05-16 082905.png
    7.5 KB · Views: 24
Judge updated Businesso - Business Website SAAS (Multitenancy) with a new update entry:

Businesso - Business Website Builder SAAS (Multitenancy)- Untouched

VERSION 3.0 – RELEASED ON 21ST JUNE, 2023
Notice for Existing Buyers: Updater is not ready yet to upgrade to version 3.0 .
It will be available within 5 days
-- ADDED: Hotel Booking Feature
-- Hotel Theme
-- Categories
-- Coupon
-- Amenities
-- Rooms
-- Room Bookings
-- Booking report
-- Added it in Package
-- RTL support
-- ADDED: Course Selling Feature
-- Course Theme
-- Instructors
-- Categories
-- Courses
-- Modules
--...

Read the rest of this update entry...
 
  • Like
Reactions: inyoman
Developer uploaded the updater-2.24-3.0:
 
Any one here can u share the nulling process for this application
 
  • Like
Reactions: LuvUAE
anyone facing this error on hotel custom or subdomain URL
Code:
Illuminate \ Routing \ Exceptions \ UrlGenerationException
PHP 8.1.18
9.52.9
Missing required parameter for [Route: front.user.rooms] [URI: rooms] [Missing parameter: domain].


[LIST]
[*]resources / views / user-front / home-page / home-nine.blade.php : 71
require
[/LIST]
 

Attachments

  • error-businessso.jpg
    error-businessso.jpg
    110.8 KB · Views: 7
Not really but I found a solution ..


add this line to config/app.php in providers list

Code:
App\Providers\SaasServiceProvider::class,


create files SaasServiceProvider.php

in folder : app/Providers

and add this

Code:
<?php

namespace App\Providers;

use App\Http\Helpers\UserPermissionHelper;
use App\Models\BasicExtended;
use App\Models\Language;
use App\Models\User;
use App\Models\User\BasicSetting;
use App\Models\User\Menu;
use App\Models\Menu as DMenu;
use App\Models\User\FooterQuickLink as Ulink;
use App\Models\User\HotelBooking\RoomSetting as RoomSetting;
use App\Models\User\UserContact;
use Doctrine\DBAL\Platforms\Keywords\KeywordList;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\ServiceProvider;
use App\Models\Social;

class SaasServiceProvider extends ServiceProvider
{
    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        view()->composer(['admin.*'],
            function ($view)
            {
                $currentLang = Language::where('is_default', 1)->first();
                $bs = $currentLang->basic_setting;
                $be = $currentLang->basic_extended;
               
               
               
                $langs = Language::get();
             
                $menus = $currentLang->menus;
               
               
                $userMenus = DMenu::where('language_id', 176)->first();
                $links = json_decode($userMenus->menus, true);
                $currentLang = Language::where('is_default', 1)->first();
                $langs = Language::get();
                $socials = Social::get();

                $categories = $currentLang->user_item_categories;
               
               
               
                $rtl = $currentLang->rtl;
                $view->with('be', $be);
                $view->with('bs', $bs);
                $view->with('rtl', $rtl);
                $view->with('menus', $menus);
                $view->with('links', $links);
                $view->with('currentLang', $currentLang);
                $view->with('langs', $langs);
                $view->with('socials', $socials);
               

               
             });
       
        view()->composer(['*'],
            function ($view)
            {
                $currentLang = Language::where('is_default', 1)->first();
                $bs = $currentLang->basic_setting;
                $be = $currentLang->basic_extended;
               
               
               
                $langs = Language::get();
             
                $menus = $currentLang->menus;
               
               
                $userMenus = DMenu::where('language_id', 176)->first();
                $links = json_decode($userMenus->menus, true);
                $currentLang = Language::where('is_default', 1)->first();
                $langs = Language::get();
                $socials = Social::get();

                $categories = $currentLang->user_item_categories;
               
               
               
                $rtl = $currentLang->rtl;
                $view->with('be', $be);
                $view->with('bs', $bs);
                $view->with('rtl', $rtl);
                $view->with('menus', $menus);
                $view->with('links', $links);
                $view->with('currentLang', $currentLang);
                $view->with('langs', $langs);
                $view->with('socials', $socials);
               

               
             });
           
           
           
        view()->composer(['user-front.*'],
            function ($view)
            {

                $username = getParam();
                $user =  getUser();
                $user_id =  User::where('username', $username)->first();
                $currentLang = \App\Models\User\Language::where('user_id', $user->id)->where('is_default', 1)->first();
                $bs = $currentLang->basic_setting;
                $be = $currentLang->basic_extended;
                $userMenus = Menu::where('user_id', $user->id)->first();
                $userLangs = \App\Models\User\Language::where('user_id', $user->id)->get();

                $userBs = BasicSetting::where('user_id', $user->id)->first();

                $userCurrentLang = \App\Models\User\Language::where('user_id', $user->id)->where('is_default', 1)->first();


                $userContact = UserContact::where('user_id', $user->id)->first();



                $userBe = $userCurrentLang->basic_extended;
                $langs = \App\Models\User\Language::where('user_id', $user->id)->get();
                $rtl = $userCurrentLang->rtl;
                $menus = $userCurrentLang->menus;


                $userContact = UserContact::where('user_id', $user->id)->first();


                $categories = $userCurrentLang->user_item_categories;





                        Config::set('app.timezone', $userBs->timezoneinfo->timezone);

                    $userFooterQuickLinks = User\FooterQuickLink::where('user_id', $user->id)->get();

                $userFooterRecentBlogs  = User\Blog::where('user_id', $user->id)->limit('4')->get();

                $phone_numbers = !empty($userContact->contact_numbers) ? explode(',', $userContact->contact_numbers) : [];
                $emails = !empty($userContact->contact_mails) ? explode(',', $userContact->contact_mails) : [];




                $keywords = json_decode($userCurrentLang->keywords, true);
                $roomSetting = RoomSetting::where('user_id', $user->id)->first();
                $packagePermissions = UserPermissionHelper::packagePermission($user->id);
                $packagePermissions = json_decode($packagePermissions, true);

                $links = json_decode($userMenus->menus, true);


                $view->with('be', $be);
                $view->with('bs', $bs);
                $view->with('links', $links);
                $view->with('userLangs', $userLangs);
                $view->with('userBs', $userBs);
                $view->with('userCurrentLang', $userCurrentLang);
                $view->with('user', $user);
                $view->with('userContact', $userContact);
                $view->with('categories', $categories);
                $view->with('emails', $emails);
                $view->with('keywords', $keywords);
                $view->with('packagePermissions', $packagePermissions);
                $view->with('roomSetting', $roomSetting);
                $view->with('rtl', $rtl);
                $view->with('userMenus', $userMenus);
                $view->with('userFooterRecentBlogs', $userFooterRecentBlogs);
                $view->with('userFooterQuickLinks', $userFooterQuickLinks);
             });


        view()->composer(['user.*'],
        function ($view)
        {





            $langs = Language::get();


            $currentLang = Language::where('is_default', 1)->first();






            $user = Auth::guard('web')->user();
            $userCurrentLang = User\Language::where('user_id', $user->id)->first();


            $userBs = BasicSetting::where('user_id', Auth::guard('web')->user()->id)->first();
            $userBe = $userCurrentLang->basic_extended;

            $rtl = $userCurrentLang->rtl;

            //$userMenus = Menu::where('user_id', $user->id)->first();

            $userMenus = Menu::where('user_id', $user->id)->get();
            $lang = Language::where('code', $userCurrentLang->code)->first();
            $lang_id = $lang->id;
           
            $userLinks = Ulink::where('user_id', $user->id)->where('language_id', $lang_id)->get();
           
           
            //$links = json_decode($userMenus, true);

            //$links = json_decode($userMenus, true);


            $default = \App\Models\User\Language::where('is_default', 1)->first();

            $bs = BasicSetting::where('user_id', Auth::guard('web')->user()->id)->first();
            $be = $currentLang->basic_extended;

            $be = BasicExtended::where('language_id', 176)->first();
            $view->with('be', $be);
           

            $deLang = User\Language::where('user_id', Auth::guard('web')->user()->id)->where('is_default', 1)->firstOrFail();

            $view->with('userMenus', $userMenus);
            $view->with('userBs', $userBs);
            $view->with('bs', $bs);
            $view->with('default', $default);
            $view->with('deLang', $deLang);
            $view->with('links', $userLinks);


        });
    }
}


if any one can give a hand ....
 
  • Like
Reactions: LuvUAE
Judge updated Businesso - Business Website SAAS (Multitenancy) with a new update entry:

Businesso - Multipurpose Website Builder SAAS (Multitenancy)- Untouched

VERSION 3.1 – RELEASED ON 18TH SEPTEMBER, 2023
For the existing buyers, Updater will be available within a week so that you can upgrade from 3.0 to 3.1 without loosing data


-- Changed full design of main website & made it attactive , trendy
-- Added vCard templates showcase section in Home Page
-- Added Seperate website templates showcase page
-- Added Seperate vCard templates showcase page
-- Added theme naming system for website & vcard templates
-- Added 'show in home...

Read the rest of this update entry...
 
Not really but I found a solution ..


add this line to config/app.php in providers list

Code:
App\Providers\SaasServiceProvider::class,


create files SaasServiceProvider.php

in folder : app/Providers

and add this

Code:
<?php

namespace App\Providers;

use App\Http\Helpers\UserPermissionHelper;
use App\Models\BasicExtended;
use App\Models\Language;
use App\Models\User;
use App\Models\User\BasicSetting;
use App\Models\User\Menu;
use App\Models\Menu as DMenu;
use App\Models\User\FooterQuickLink as Ulink;
use App\Models\User\HotelBooking\RoomSetting as RoomSetting;
use App\Models\User\UserContact;
use Doctrine\DBAL\Platforms\Keywords\KeywordList;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\ServiceProvider;
use App\Models\Social;

class SaasServiceProvider extends ServiceProvider
{
    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        view()->composer(['admin.*'],
            function ($view)
            {
                $currentLang = Language::where('is_default', 1)->first();
                $bs = $currentLang->basic_setting;
                $be = $currentLang->basic_extended;
              
              
              
                $langs = Language::get();
            
                $menus = $currentLang->menus;
              
              
                $userMenus = DMenu::where('language_id', 176)->first();
                $links = json_decode($userMenus->menus, true);
                $currentLang = Language::where('is_default', 1)->first();
                $langs = Language::get();
                $socials = Social::get();

                $categories = $currentLang->user_item_categories;
              
              
              
                $rtl = $currentLang->rtl;
                $view->with('be', $be);
                $view->with('bs', $bs);
                $view->with('rtl', $rtl);
                $view->with('menus', $menus);
                $view->with('links', $links);
                $view->with('currentLang', $currentLang);
                $view->with('langs', $langs);
                $view->with('socials', $socials);
              

              
             });
      
        view()->composer(['*'],
            function ($view)
            {
                $currentLang = Language::where('is_default', 1)->first();
                $bs = $currentLang->basic_setting;
                $be = $currentLang->basic_extended;
              
              
              
                $langs = Language::get();
            
                $menus = $currentLang->menus;
              
              
                $userMenus = DMenu::where('language_id', 176)->first();
                $links = json_decode($userMenus->menus, true);
                $currentLang = Language::where('is_default', 1)->first();
                $langs = Language::get();
                $socials = Social::get();

                $categories = $currentLang->user_item_categories;
              
              
              
                $rtl = $currentLang->rtl;
                $view->with('be', $be);
                $view->with('bs', $bs);
                $view->with('rtl', $rtl);
                $view->with('menus', $menus);
                $view->with('links', $links);
                $view->with('currentLang', $currentLang);
                $view->with('langs', $langs);
                $view->with('socials', $socials);
              

              
             });
          
          
          
        view()->composer(['user-front.*'],
            function ($view)
            {

                $username = getParam();
                $user =  getUser();
                $user_id =  User::where('username', $username)->first();
                $currentLang = \App\Models\User\Language::where('user_id', $user->id)->where('is_default', 1)->first();
                $bs = $currentLang->basic_setting;
                $be = $currentLang->basic_extended;
                $userMenus = Menu::where('user_id', $user->id)->first();
                $userLangs = \App\Models\User\Language::where('user_id', $user->id)->get();

                $userBs = BasicSetting::where('user_id', $user->id)->first();

                $userCurrentLang = \App\Models\User\Language::where('user_id', $user->id)->where('is_default', 1)->first();


                $userContact = UserContact::where('user_id', $user->id)->first();



                $userBe = $userCurrentLang->basic_extended;
                $langs = \App\Models\User\Language::where('user_id', $user->id)->get();
                $rtl = $userCurrentLang->rtl;
                $menus = $userCurrentLang->menus;


                $userContact = UserContact::where('user_id', $user->id)->first();


                $categories = $userCurrentLang->user_item_categories;





                        Config::set('app.timezone', $userBs->timezoneinfo->timezone);

                    $userFooterQuickLinks = User\FooterQuickLink::where('user_id', $user->id)->get();

                $userFooterRecentBlogs  = User\Blog::where('user_id', $user->id)->limit('4')->get();

                $phone_numbers = !empty($userContact->contact_numbers) ? explode(',', $userContact->contact_numbers) : [];
                $emails = !empty($userContact->contact_mails) ? explode(',', $userContact->contact_mails) : [];




                $keywords = json_decode($userCurrentLang->keywords, true);
                $roomSetting = RoomSetting::where('user_id', $user->id)->first();
                $packagePermissions = UserPermissionHelper::packagePermission($user->id);
                $packagePermissions = json_decode($packagePermissions, true);

                $links = json_decode($userMenus->menus, true);


                $view->with('be', $be);
                $view->with('bs', $bs);
                $view->with('links', $links);
                $view->with('userLangs', $userLangs);
                $view->with('userBs', $userBs);
                $view->with('userCurrentLang', $userCurrentLang);
                $view->with('user', $user);
                $view->with('userContact', $userContact);
                $view->with('categories', $categories);
                $view->with('emails', $emails);
                $view->with('keywords', $keywords);
                $view->with('packagePermissions', $packagePermissions);
                $view->with('roomSetting', $roomSetting);
                $view->with('rtl', $rtl);
                $view->with('userMenus', $userMenus);
                $view->with('userFooterRecentBlogs', $userFooterRecentBlogs);
                $view->with('userFooterQuickLinks', $userFooterQuickLinks);
             });


        view()->composer(['user.*'],
        function ($view)
        {





            $langs = Language::get();


            $currentLang = Language::where('is_default', 1)->first();






            $user = Auth::guard('web')->user();
            $userCurrentLang = User\Language::where('user_id', $user->id)->first();


            $userBs = BasicSetting::where('user_id', Auth::guard('web')->user()->id)->first();
            $userBe = $userCurrentLang->basic_extended;

            $rtl = $userCurrentLang->rtl;

            //$userMenus = Menu::where('user_id', $user->id)->first();

            $userMenus = Menu::where('user_id', $user->id)->get();
            $lang = Language::where('code', $userCurrentLang->code)->first();
            $lang_id = $lang->id;
          
            $userLinks = Ulink::where('user_id', $user->id)->where('language_id', $lang_id)->get();
          
          
            //$links = json_decode($userMenus, true);

            //$links = json_decode($userMenus, true);


            $default = \App\Models\User\Language::where('is_default', 1)->first();

            $bs = BasicSetting::where('user_id', Auth::guard('web')->user()->id)->first();
            $be = $currentLang->basic_extended;

            $be = BasicExtended::where('language_id', 176)->first();
            $view->with('be', $be);
          

            $deLang = User\Language::where('user_id', Auth::guard('web')->user()->id)->where('is_default', 1)->firstOrFail();

            $view->with('userMenus', $userMenus);
            $view->with('userBs', $userBs);
            $view->with('bs', $bs);
            $view->with('default', $default);
            $view->with('deLang', $deLang);
            $view->with('links', $userLinks);


        });
    }
}


if any one can give a hand ....

Still asking for Purchase Code

1695119794987.png
 
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