Download the PHP package mehadi/laravel-crud-generator without Composer

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

Laravel CRUD Generator 🖥️🔥

Introduction

Welcome to the Laravel CRUD Generator 🖥️🔥! This package provides a convenient way to quickly generate CRUD (Create, Read, Update, Delete) functionality for your Laravel projects.

Installation

To integrate the Laravel CRUD Generator into your Laravel project, follow these steps:

  1. Open your terminal and navigate to your project's root directory.
  2. Run the following command to install the package via Composer:

Features

The Laravel CRUD Generator offers the following features:

Usage

Once you've installed the package and set up the prerequisites, you can use the Laravel CRUD Generator to quickly create CRUD operations for your models. Here's how:

  1. Open your terminal in the root directory of your Laravel project.
  2. Use the following command to generate CRUD files for a specific model (e.g., Post) along with its columns:
  1. After creating a new Model, be sure to execute the following command:

Running this command is important to ensure that any database changes related to the new Model are properly applied. This helps keep your database schema synchronized with your application's data structure.

  1. To delete all the generated CRUD files and clean up, use the following command:

  2. To make these uploaded files accessible from the web, you need to create a symbolic link from the public/storage directory to the storage/app/public directory. This can be done using the following Artisan command:

After running this command, Laravel will create a symbolic link that allows files in the storage/app/public directory to be accessed through the URL http://your-app-url/storage.

Prerequisites

Before using the Laravel CRUD Generator, make sure you have the following prerequisites set up in your project:

  1. Install Laravel Breeze package:

  2. Run the Breeze installation command and choose the Blade template option:

  3. Run the migration command to set up the database tables:

  4. Install npm packages:

  5. Compile the assets with the following command:

Screenshots

Add new Post form

List Post

Notes

For more information, visit the GitHub repository or the Packagist page of the package.


All versions of laravel-crud-generator with dependencies

PHP Build Version
Package Version
No informations.
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 mehadi/laravel-crud-generator contains the following files

Loading the files please wait ....