The Stock Management System Project in Laravel is built with PHP, CSS, Bootstrap, JavaScript, and the Laravel Framework.
The project has an admin side and a user side from which a user may view the transaction, and can add stock, and other information.
In the management of this system, the administrator is play an important roles in this system.
In this project, the user is responsible for all of the key functions.
Manage hospital assets and stock: see for one hospital, with a superadmin managing all hospitals, and be warned when there are low amounts left, as well as review transaction history.
When it comes to the functionality of the Laravel stock management system, the user can simply view transactions and add stock. Hospitals, users, roles, stocks, assets, and transactions may all be managed by the admin.
It also includes user management for convenient system administration.
Laravel is a web application framework with a syntax that is both expressive and beautiful.
To be really meaningful, we believe development must be a fun and creative experience.
Laravel aims to make development easier by simplifying processes like authentication, routing, sessions, queueing, and caching that are typical in most online applications.
- Dashboard Module:
- Permission Module:
- Users Module:
- Hospital Module:
- Asset Module:
- Stock Module:
- Transaction Module:
- Login Module
This is the module where the warehouse management system administrator inserts their credentials to obtain access to the data.
- Dashboard Module
After logging in, system administrators are automatically directed to this module.
- Manage Permission Module
In this module the admin can add, edit, view and delete permission information. Also the admin can export through csv, excel, pdf, and allows to print the table of permission.
- Manage Roles Module
In this module the admin can add, edit, view and delete roles information. Also the admin can export through csv, excel, pdf, and allows to print the table of roles.
- Users Module
This module the admin can add, edit, view and delete users information. Also the admin can export through csv, excel, pdf, and allows to print the table of users.
- Manage Hospital Module
In this module the admin can add, edit, view and delete hospital information. Also the admin can export through csv, excel, pdf, and allows to print the table of hospitals.
- Manage Assets Module
In this module the admin can add, edit, view and delete assets information. Also the admin can export through csv, excel, pdf, and allows to print the table of assets.
- Stocks Module
The admin can add, edit, view and delete stocks information. Also the admin can export through csv, excel, pdf, and allows to print the table of stocks.
- Transaction Module
The admin can view transaction information. Also the admin can export through csv, excel, pdf, and allows to print the table of transaction
Here are the steps on how to run a Laravel Stock Management System with Source Code
- Installed the composer and the Laravel dependencies
First, you need to install first the Composer and the Laravel libraries.
- Open Command Prompt
Next, go to the project folder directory then type CMD to open the command prompt.
- Composer Update
Then, after you finish to installed the composer and the Laravel. Now type “composer update” in your command prompt to install the composer dependencies.
- php artisan key:generate
After that, then type “php artisan key:generate ” in your command prompt. A command that sets the APP_KEY value in your . env file.
By default, Run the following command to have the database tables migrated for you so that you can begin using the system.
- Create Database
After that, to install and run the application correctly. Simply go to phpmyadmin and make a new database.
After that, “Be” and rename it to “.env“, then go to connection and modify the default database connection name, only database connection, database username, and password.
- php artisan migrate
Lastly, you’ve set up the environment, you’ll need to establish a database configuration for it.
Use the following command to create database tables: “php artisan migrate“.
- php artisan serve
Lastly, type “php artisan serve” in your command prompt.
The purpose of using PHP artisan serve (PHP built in server) is just for testing and easy starting your project it should not be used in real website deployment.
- Copy “http://127.0.0.1:8000/”
Finally, in your browser, type the following code to access your project dashboard.