Download the PHP package vmorozov/laravel_admin_generator without Composer

On this page you can find all versions of the php package vmorozov/laravel_admin_generator. 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 laravel_admin_generator

Laravel Admin Panel Generator

Build Status

This package is made for speeding up development of admin panel for your Laravel project.
It helps you to handle common tasks in admin panel development for your project.

Features

  1. Quick CRUD Generation
  2. Working with different field types
  3. Handling relationships
  4. Search
  5. Export Data to xls, csv file
  6. Using default Order By and Where conditions
  7. Ability to add additional buttons to each list item
  8. Files uploading to Model column
  9. Files uploading using spatie/laravel-medialibrary package

1. Installation

  1. composer require vmorozov/laravel_admin_generator
  2. php artisan vendor:publish and select Vmorozov\LaravelAdminGenerator\AdminGeneratorServiceProvider to publish all needed files for admin panel.

2. Setup

1. Create Controller

2. Add record to routes/admin.php

3. (Optional) Setup fields

Available field types:

in Model

In Controller

3. Add link to the sidebar

Open file resources/views/vendor/vmorozov/laravel_admin_generator/layouts/sidebar.blade.php and add your links to the generated admin panel endpoints.

3. Advanced Usage

Add default order by and where clauses to the list query

Add additional button to each item in list

Search

To add search functionality you should just add searchable param to the field setup

Working with spatie/laravel-medialibrary

To start using this package in admin panel install package.
Than you should add additional setups to your model:

There are tho kinds of available collections setups
  1. Simple collection for multiple files
  2. Collection for single file (Such as avatar image of user, main image of product, etc). To make collection single use 'single_file' => true parameter.

All versions of laravel_admin_generator with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
almasaeed2010/adminlte Version 2.4.*
illuminate/database Version >=5.3
illuminate/http Version >=5.3
illuminate/routing Version >=5.3
illuminate/support Version >=5.3
maatwebsite/excel Version ^3.1
spatie/laravel-medialibrary Version >=7.1
vmorozov/laravel-file-uploads Version ^1.1
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 vmorozov/laravel_admin_generator contains the following files

Loading the files please wait ....