Sistem Informasi Data Perkebunan Rakyat is an application designed to collect plantation survey data in each village in Bengkalis Regency. This application provides a solution for the Bengkalis Regency Plantation Service in collecting data during plantation surveys.
Interesting features of Sistem Informasi Data Perkebunan Rakyat:
-
Authentication: Admins can log in to the application via a registered account.
-
CRUD Data: Can add, view, change, search and delete data on districts, sub-districts, villages in Bengkalis Regency.
-
Plantation Survey: Plantation Survey is a data collection method used to obtain information related to various aspects of the plantation sector.
Following are the steps to install a Laravel project:
Make sure you have Node.js and Composer installed on your system before starting the installation.
1. Clone your Laravel project repository into a local directory:
git clone https://github.com/ramadhanabelio/sidp-disbun.git
2. Go to the project directory:
cd sidp-disbun
3. Install JavaScript dependencies using npm:
npm install
4. Install PHP dependencies using composer:
composer install
5. Rename the .env.example file to .env. This is the Laravel configuration file:
Linux, macOS:
mv .env.example .env
Windows:
cp .env.example .env
6. Create a database with a name according to your project, for example "sidp_disbun", and configure the .env file to set the database name:
Open the .env file using a text editor and find the following line:
DB_DATABASE=laravel
Replace database_name with the name you used for the database. For example:
DB_DATABASE=sidp_disbun
7. Generate application key:
php artisan key:generate
8. Create and migrate database (in this case, we use migrate:fresh to delete and repopulate database data):
php artisan migrate:fresh --seed
9. Run the Laravel development server:
php artisan serve
After following the steps above, your Laravel project is now ready to use and can be accessed via the browser at http://localhost:8000.