mohsincrud / crud
This is Package
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
This package is not auto-updated.
Last update: 2025-07-24 20:45:07 UTC
README
A custom CRUD package for Laravel to simplify creating, reading, updating, and deleting resources.
Installation
composer.json:
"config": { "optimize-autoloader": true, "preferred-install": "dist", "sort-packages": true, "allow-plugins": { "pestphp/pest-plugin": true, "php-http/discovery": true } }, "minimum-stability": "stable", "prefer-stable": true
You can install the package via composer:
composer require mohsincrud/crud
If you are using Laravel 5.5 or higher, the package will automatically register the service provider. For older versions of Laravel, you need to manually add the service provider in config/app.php
'providers' => [ // Other Service Providers MohsinCrud\Crud\ContactServiceProvider::class, ],
Database Migration
After installing the package and adding the service provider, create the database tables by running the migrations
php artisan migrate
Accessing the CRUD Interface
You can access the CRUD interface at the following URL:
http://localhost:8000/student/index