| Package Data | |
|---|---|
| Maintainer Username: | markpurser | 
| Maintainer Contact: | mail@markpurser.co.uk (Mark Purser) | 
| Package Create Date: | 2017-02-13 | 
| Package Last Update: | 2017-08-30 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-28 03:05:17 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 1,002 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 15 | 
| Total Watchers: | 5 | 
| Total Forks: | 4 | 
| Total Open Issues: | 1 | 
Open source CRUD framework for Laravel 5.3+.

Install Laravel 5.3 or above.
Require this package with composer using the following command:
composer require markpurser/laravel-crudkit
After updating composer, add the service providers to the providers array in config/app.php
Markpurser\LaravelCrudKit\CrudKitServiceProvider::class,
Markpurser\LaravelCrudKit\Demo\BooksServiceProvider::class,
Publish the configuration file and public assets.
php artisan vendor:publish --provider="Markpurser\LaravelCrudKit\CrudKitServiceProvider"
In your .env file, set up your database connection to point to the example sqlite3 file.
DB_CONNECTION=sqlite
DB_DATABASE=/absolute/path/to/vendor/markpurser/laravel-crudkit/src/Demo/books.sqlite3
In your browser, go to http://localhost:8000/admin-panel
Many of the features that were experimental or incomplete in the original http://crudkit.com are now working, including:
Inspired by http://crudkit.com, this project is a complete rewrite with a simplified codebase.
https://github.com/markpurser/laravel-crudkit/wiki
If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.
http://markpurser.co.uk
The code in this project is licensed under MIT license.