Download the PHP package bgaze/laravel-crud without Composer

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

Laravel CRUD Generator

Table of content

The Conventions section explain very important concepts.
Please read it carrefully before using this package.

Documentation:

Overview

This package allows to generate CRUDs in a breath for your Laravel 5.5+ applications.
Please have a look to this short video on Vimeo to see it in action.

Using the SignedInput syntax, it offers a concise and handy way to define the model fields.

It is designed to create easily custom CRUDs, aka themes.

Two simple themes are provided :

Installation

Simply import the package as a dev dependency into your Laravel application:

You can publish the package configuration to /config/crud.php:

And classic themes views to /resources/views/vendor/crud-classic:

Why this package?

Laravel is my favorite PHP framework.
But using it daily, at work and for my private projects, I realized that each time I create a model, I was wasting a lot of time doing repetitive tasks instead of really working on the application itself:

  1. Generate classes: model, migration, controller, request, factory, seeder, ...
  2. Define the table fields into migration.
  3. Create the rules into the request class.
  4. Create the model faker into factory.
  5. Define CRUD actions into controller.
  6. Register controller routes.
  7. Create CRUD views and model forms.

I believe that this process can be automated a lot to produce a generic functionnal CRUD that we just need to customize, keeping the focus on the application logic.

The key for that is to define the Model table fields from whom, sticking to the framework conventions, a lot of things can be deducted.
For instance request rules or form fields: a non-nullable field is required, an enum field is often a select.

But even if CRUD generation logic will be almost the same, the files to generate can vary a lot depending on the tools used.
For instance, using classic HTML or Vue.js, a CRUD files will be very different.

So this package goals are to provide:

Conventions

CRUD generator need to manipulate Model name in order to generate required ressources.
As a convention, we designate by:

Examples:


All versions of laravel-crud with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version >=5.5.0
laravelcollective/html Version >=5.5.4
bgaze/laravel-php-cs-fixer Version ~1
tightenco/ziggy Version ~0.6
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 bgaze/laravel-crud contains the following files

Loading the files please wait ....