This is Package

dev-master 2025-02-06 18:46 UTC

This package is not auto-updated.

Last update: 2025-07-24 20:45:07 UTC


README

Latest Stable Version Total Downloads License

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