Download the PHP package akhilesh/neodash without Composer

On this page you can find all versions of the php package akhilesh/neodash. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package neodash

Introduction to Neodash

Neodash is a admin panel package made for laravel on top of Laravel Breeze. It is a very simple setup for a quick start, with a separate admin panel having user, roles & permissions, posts, pages, faqs and testimonials management. This package uses Bootstrap 4.x.

Installation

Update your .env file, provide database name, user and password. Execute command given below to install neodash admin panel

composer require akhilesh/neodash

Run following command to quick installation

php artisan neodash:install fresh

By default default scaffold will be generated with default options, instead you can change your setting in configuration file site.php and run php artisan neodash:install once again. This will ask some questions like, if you want to migrate the fresh table or not, or you want to seed the tables or not.

After installation you will get routes in admin.php file in routes folder, models and controller with their related trait and views. To override the properties / functionalities, define your own respective function in controller. This package comes with a route middleware GatesMiddleware::class, admin routes will be wrapped within this middleware.

Configurations

Add ASSET_URL to .env file, which will point to pubic directory. public/assets: In this folder you will get all the static images, css, js and other files.

A storage() helper will be provided to get the url of publically stored images. If you want to change this url, you can set a property in .env file STORAGE_URL.

You can disable install command from config/site.php by setting command key to false. This will protect you by running the command file accidentally and replacing your existing files.

Other packages being used

Alertt: Alertt package has been integrated for any operation alert message, for any customization in this, please refer to takshak/alertt.

Imager: Takshak/Imager is integrated to generate seeds and resize and modify images at the time of upload images in different sections in the panel. This is also user to get default placeholder images and user avatars. For more information about this package, please refer to takshak/imager

This package comes with some default users, roles, and permission, which are inserted using seeders. There seeders for all the modules. You will get a default admin user with email: [email protected] and password: password


Extra functionalities

For Example:

    route('some.route',  [ 
        'refer' => [ 
            'refer_from' => route('redirect.source'), 
            'refer_to' => route('redirect.destination'), 
            'method' => 'GET' 
        ] 
    ]);

Queries Management

You can directly submit query forms from frontend to admin panel by posting forms on route('queries.store'). It will be stored on the database and an email will also be send to the mail defined in env file MAIL_PRIMARY.

Possible input names are given below. All inputs are optional can will be defined in form if required:


All versions of neodash with dependencies

PHP Build Version
Package Version
Requires laravel/breeze Version ^1.6
intervention/image Version ^2.7
takshak/alertt Version ^1.0
takshak/imager Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package akhilesh/neodash contains the following files

Loading the files please wait ....