superv/platform

SuperV Platform Package
13,140 24
Install
composer require superv/platform
Latest Version:v0.25.1
PHP:^7.3|^8.0|^8.1|^8.2
License:MIT
Last Updated:Jun 16, 2023
Links: GitHub  ·  Packagist
Maintainer: aliselcuk

SuperV Platform for Laravel Build Status

SuperV is a Laravel package that provides an SPA Admin Panel based on your migration files, without generating or requiring additional files.

Please visit https://superv.github.io for documentation.

Click here for video tutorials.

Installation

Requirements

superV has the following requirments:

  • Laravel 5.8+ or 6.*
  • PHP 7.2.0+
  • NPM (If you are willing to customize the frontend)

Install as a Composer Package

Pull in the latest superV Platform package:

composer require superv/platform

Run the installer

php artisan superv:install

Installer will try to complete the following configurations for you:

Install the composer package for Admin Panel addon:

composer require superv/admin-panel

Install the Admin Panel

php artisan addon:install superv.panels.admin

You can now navigate to http://your-base-hostname/admin using your browser and login with the user credentials you created during the installation process.

Install as a Fresh Project

Create project with composer in your terminal:

composer create-project superv/superv-project 

Your web server should point to project's public folder for your hostname (eg: superv.test). Just as it would in a normal Laravel application.

Required directory permissions are also same with a normal laravel application with one exception, which is the addons folder. So make sure this folder is writable by your web server too.

Next, create a database and add your credentials to your .env file:

DB_HOST=localhost
DB_DATABASE=superv
DB_USERNAME=superv
DB_PASSWORD=secret

And install superV

php artisan superv:install

Install the Admin Panel

php artisan addon:install superv.panels.admin

You can now navigate to http://your-base-hostname/admin using your browser and login with the user credentials you created during the installation process.

Support

If you any questions, feel free to contact me on Twitter.

License

MIT

Related Packages

ilhamsyabani/laravel-volt-starter

A modern, MIT-licensed Laravel starter kit using Livewire Volt, Laravel Folio, a...

7 0
dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin...

68,779 1,582
jeroennoten/laravel-adminlte

Easy AdminLTE v4 integration with Laravel

5,332,381 4,000