Download the PHP package markgersaliaph/laravel-crud-generate without Composer

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

Laravel Breeze React CRUD Generator Package

Total Downloads Latest Stable Version License

Introduction

This Laravel package simplifies the process of creating CRUD (Create, Read, Update, Delete) operations specifically for the Laravel Breeze React starter.

Requirements

Before installing, make sure to install Laravel Breeze with React:

Follow the instructions to set up Laravel Breeze with React.

Installation

To install this package, use Composer:

Getting Started

Publish Configuration and React Components

To use the Laravel CRUD Generate package in your Laravel project, you'll need to publish the configuration file and React components. Follow these steps:

  1. Publish Configuration File:

    Run the following Artisan command to publish the configuration file:

    config/laravel-crud-generate.php php artisan crud:generate YourModel

php artisan crud:generate Product

app/Models/Product.php app/Http/Controllers/ProductController.php database/migrations/create_products_table.php resources/js/Pages/Form.jsx resources/js/Pages/List.jsx

Route::resource('products', App\Http\Controllers\ProductsController::class);



## Generating Components with Built-In Components

If you prefer to use built-in components, follow these steps:

1. Open the configuration file located at `config/laravel-crud-generate.php`.

2. Set the `'plain_components'` option to `false`:

   This configuration change will enable the use of built-in components such as `Table.jsx` and `Pagination.jsx` in your Laravel project.

Now, when generating components with Laravel CRUD Generate, the components will be included based on the updated configuration.

## Authors

- [Mark Anthony Gersalia](mailto:[email protected]) - Creator and Lead Developer
- [Mardy Dela Cruz](mailto:[email protected])  - Contributor
- [Jp Alcantara](mailto:[email protected])  - Contributor
- [Nelson Estuesta](mailto:[email protected])  - Contributor

All versions of laravel-crud-generate 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 markgersaliaph/laravel-crud-generate contains the following files

Loading the files please wait ....