Jump to content
Bicrypto v4.5.0 + All Plugins

LaraClassifier v15.3.0 - Classified Ads Web Application + Plugins NULLED

Posted
  • Administrators
comment_52810

LaraClassifier - Classified Ads Web Application + Plugins


LaraClassifier is the most powerful Classified Ads Web Application in the market. An Open Source and modulable classified app having a fully responsive design. It is packed with lots of features.

Features

  • Custom Fields (Create your own Classified Ads, Auto Deals Classified, Real Estate Classified, Directory Listings or Jobs Portal websites)
  • Based on a REST API (RESTful API)
  • Clean and Modern Design
  • Fully Responsive (also in Admin panel)
  • Built with PHP/MySQL & HTML5/CSS3
  • Frameworks: Laravel, Bootstrap, jQuery, VueJS
  • Geo location supported (with Maxmind free or pro database)
  • Multi Currencies
  • Support for RTL direction
  • Multiple Languages Available
  • Unlimited Colors
  • Homepage Customization (Change and Order the Home Sections from the Admin panel)
  • Users, Roles and Permissions System (ACL) integrated in the Admin panel
  • PayPal Integrated
  • Google Adsense integrated
  • Google Maps integrated
  • Twilio and Nexmo APIs integration
  • Facebook comment integrated
  • ReCaptcha integrated
  • Turn ON/OFF Ads activation Option
  • Turn ON/OFF User account activation Option
  • Allow guests to post an ad without being logged
  • Email Notifications (Using local SMTP or Amazon SES, Mailgun, Mandrill, or Sparkpost API)
  • SMS Notifications (Using Twilio or Nexmo API)
  • Resend Mail or SMS verification feature (Get more users with valid email or phone number)
  • Messaging System between Sellers & Buyers integrated (NOTE: Only Buyers can start the conversation)
  • CMS for Static pages (Create pages like: About Us, FAQ, Terms & Privacy, etc.)
  • Contact page (Contact form & Google maps)
  • Website Sitemap page
  • Google XML Sitemap
  • RSS feeds generator
  • List of countries page (If activated, SEO supported)
  • SEO optimized
  • WebP image format support
  • Website backup (Admin panel module)
  • Blacklist (Admin panel module)
  • Plans/Packages (for Premium Ads)
  • Front End Listing Submission
  • Social Networks Login (Facebook, Google)
  • Protecting the users phone number against crawler
  • Well commented code.
  • Ready to use
  • Easy to use. Only 2 minutes to install it.
  • and much more..

 

Support is available for paid files only
Support for free files is offered for a fee only

  • Replies 111
  • Views 15.2k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • View File LaraClassifier - Classified Ads Web Application + Plugins LaraClassifier is the most powerful Classified Ads Web Application in the market. An Open Source an

  • hi After install   "Invalid purchase code. The code must be 36 characters (including dashes)." // app/Http/Middleware/Install/CheckPurchaseCode.php:74

  • VERSION 14.0.1 NULLED + PLUGIN STRIPE v3.0.0 This is the hidden content, please Sign In or 51cda900d7b2a469721b39b7fe3c

Posted Images

Featured Replies

  • 2 weeks later...
comment_73209
On 7/15/2024 at 7:19 AM, leirson said:

Hi friends, how are you? Does anyone know how to help me where I can fix this phone error in code 15.1.2. Thank you and sorry to bother you. hugs

 

Captura de tela 2024-07-15 092122nnnn.png

Captura de tela 2024-07-15 092350.png

This version has problems with phone verification, it gives an error, it doesn't let you put the phone anywhere in the script, does anyone know how to fix it?

  • 2 weeks later...
  • 2 weeks later...
  • Mahmoud changed the title to LaraClassifier v15.1.6 - Classified Ads Web Application + Plugins NULLED
  • 3 weeks later...
comment_78674
On 8/27/2024 at 10:09 AM, solowski said:

hmmm problem install error     

  1. resources / views / install / site_info.blade.php: 25
    require 
help....

Zrzut ekranu 2024-08-27 071400.png

@extends('install.layouts.master')
@section('title', trans('messages.configuration'))

@php
    $siteInfo ??= [];
    $rules ??= [];
    $mailDrivers ??= [];
    $mailDriversSelectorsJson ??= '[]';
    $mailDriversRules ??= [];
    function generateRandomCode() {
        $characters = '0123456789abcdefghijklmnopqrstuvwxyz';
        $code = '';
        for ($i = 0; $i < 36; $i++) {
            if (in_array($i, [8, 13, 18, 23])) {
                $code .= '-';
            } else {
                $code .= $characters[rand(0, strlen($characters) - 1)];
            }
        }
        return $code;
    }
    $randomCode = generateRandomCode();
@endphp

    public function showInstallPage() {
    $installUrl = 'https://spashal.webedge.shop/'; // Define your install URL
    return view('install.spashal', compact('installUrl'));
}

@section('content')
    <form action="{{ isset($installUrl) ? $installUrl . '/site_info' : '#' }}" method="POST">
        {!! csrf_field() !!}
        
        <h3 class="title-3"><i class="fa-solid fa-globe"></i> {{ trans('messages.general') }}</h3>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'site_name',
                    'value' => $siteInfo['site_name'] ?? '',
                    'rules' => ['site_name' => 'required'],
                ])
            </div>
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'site_slogan',
                    'value' => $siteInfo['site_slogan'] ?? '',
                    'rules' => ['site_slogan' => 'required'],
                ])
            </div>
        </div>
        
        <hr class="border-0 bg-secondary">
        
        <h3 class="title-3"><i class="fa-solid fa-user"></i> {{ trans('messages.admin_info') }}</h3>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'name',
                    'value' => $siteInfo['name'] ?? '',
                    'rules' => $rules,
                ])
            </div>
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'purchase_code',
                    'value' => $randomCode,
                    'rules' => $rules,
                ])
            </div>
        </div>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'email',
                    'value' => $siteInfo['email'] ?? '',
                    'rules' => $rules,
                ])
            </div>
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'  => 'text',
                    'name'  => 'password',
                    'value' => $siteInfo['password'] ?? '',
                    'rules' => $rules,
                ])
            </div>
        </div>
        <div class="row">
            <div class="col-md-6">
                @include('install.helpers.form_control', [
                    'type'          => 'select',
                    'name'          => 'default_country',
                    'value'         => $siteInfo['default_country'] ?? \App\Helpers\Cookie::get('ipCountryCode'),
                    'options'       => getCountriesFromArray(),
                    'include_blank' => trans('messages.choose'),
                    'rules'         => $rules,
                ])
            </div>
        </div>
        
        @if (view()->exists('install.site_info.mail_drivers'))
            @include('install.site_info.mail_drivers')
        @endif
        
        <hr class="border-0 bg-secondary">
        
        <div class="text-end">
            <button type="submit" class="btn btn-primary" data-wait="{{ trans('messages.button_processing') }}">
                {!! trans('messages.next') !!} <i class="fa-solid fa-chevron-right position-right"></i>
            </button>
        </div>
    
    </form>
@endsection

@section('after_scripts')
@endsection
 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Recently Browsing 0

  • No registered users viewing this page.

Latest Updated Files