Hospital Management System
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- Simple, fast routing engine.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, powerful, and provides tools required for large, robust applications.
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.
To deploy this project run
1. Create Project :- composer create-project laravel/laravel:^9.0 Hospital_Management
2. Then go to the project folder and open cmd and run the next step.
3. Project Run :- php artisan serve
4. Create Blade File :- Create the login/Register Blade File in the resources/views folder.
5. Route :- Login/Register Route add in web.php file
Example :-
1. Add these above the top in the web.php file. :- use App\Http\Controllers\AuthController;
2. Add route Like This formate :- Route::get('/',[AuthController::class,'login_show'])->name('login');
6. Create Controller :- php artisan make:controller AuthController
7. Create Model with migration :- php artisan make:model Role -m
8. Migrate :- php artisan migrate
To run tests, run the following command
php artisan serve