mohsincrud / crud
This is Package
Package info
github.com/Mohsin-Imran/custom_crud_package
Language:Blade
pkg:composer/mohsincrud/crud
This package is not auto-updated.
Last update: 2026-02-19 23:37:25 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