Website

Website Module for Adminetic Admin Panel

Website module for Adminetic Admin Panel

Contains: -

  • Application Module

  • Attribute Module

  • Career Module

  • Category Module

  • Client Module

  • Counter Module

  • Download Module

  • Facility Module

  • FAQ Module

  • Feature Module

  • Gallery Module

  • Inquiry Module

  • Message Module

  • Notice Module

  • Package Module

  • Page Module

  • Payment Module

  • Popup Module

  • Post Module

  • Process Module

  • Product Module

  • Project Module

  • Service Module

  • Software Module

  • Tag Module

  • Team Module

  • Testimonial Module

Installation

Step 1:

You can install the package via composer:

composer require adminetic/website

Step 2:

Setup adminetic website.

php artisan install:adminetic-website

Step 3:

Migrate adminetic website module tables.

php artisan migrate:adminetic-website

For rollback

php artisan migrate:rollback:adminetic-website

Step 4:

Install Media Library

Include Package Path In composer.json

    "repositories": {
        "spatie/laravel-medialibrary-pro": {
            "type": "path",
            "url": "app/Modules/medialibrarypro",
            "options": {
                "symlink": true
            }
        }
    }

Then run composer install

composer require spatie/laravel-medialibrary-pro:dev-main

In config/livewire-tables.php

  'theme' => 'bootstrap-5',

Include Adminetic Website Adapter

In config/adminetic.php, include

    // Adapters
    'adapters' => [
        Adminetic\Website\Adapter\WebsiteAdapter::class,
    ],

Last updated