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 isaccessible, powerful, and provides tools required for large, robust applications.
Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
You may also try the Laravel Bootcamp, where you will be guided through building a modern Laravel application from scratch.
If you don't feel like reading, Laracasts can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Patreon page.
- Vehikl
- Tighten Co.
- Kirschbaum Development Group
- 64 Robots
- Cubet Techno Labs
- Cyber-Duck
- Many
- Webdock, Fast VPS Hosting
- DevSquad
- Curotec
- OP.GG
- WebReinvent
- Lendio
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 taylor@laravel.com. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.
TelkomSehat is a digital health solution developed by Telkom Indonesia. This project provides online health services that make it easier for Indonesians to consult with doctors, order medicines, and get the latest health information.
- Laravel Framework 10.48.22
- Haidaruddin Muhammad Ramdhan (1301204459) — @ramhaidar
- Ahmad Fasya Adila (1301204231) — @AhmadFasya
- Muhammad Dimas Rifki Irianto (1301204112) — @dimasrfq
- Muhammad Hiksal Daeng Jusuf Bauw (1301204416) — @hiksalmuhammad
- Robith Naufal Razzak (1301204017) — @robithnr
- Online Health Consultation: Users can consult with doctors online through this platform.
- Medicine Ordering: Users can order medicines that will be delivered directly to their homes.
- Health Information: This platform provides the latest health information to help users maintain their health.
app/
: Contains the main application code, including models, controllers, and providers.bootstrap/
: Contains the bootstrap files for the application.config/
: Contains configuration files for various application components.database/
: Contains database migrations and seeders.public/
: Contains publicly accessible files, including assets like images and stylesheets.resources/
: Contains views and other assets.routes/
: Contains route definitions for the application.storage/
: Contains files generated by the application, such as logs and cache.tests/
: Contains unit and feature tests for the application.vendor/
: Contains third-party dependencies installed via Composer.
- Install XAMPP and Run Apache and MySQL
- Copy file .env.example to .env
- Set your database configuration in .env file in the following lines as needed:
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel DB_USERNAME=root DB_PASSWORD=
- Create a Database with the same name as the value
DB_DATABASE
in MySQL (Can Use PHPMyAdmin) - Open a Command Prompt in the Laravel Project Root Folder
- Execute the following command to install the dependencies needed by Laravel:
composer install
- Generate a new application key by running the following command in the terminal:
php artisan key:generate
- Run the following command to create database tables:
php artisan migrate
- Execute the following command for seeding database data:
php artisan db:seed --class=AwalanSeeder
- Execute the following command to install the dependencies needed by Laravel:
- After the above steps have been performed run the following command to start the local server and open the app in the browser:
php artisan serve
-
Patient:
-
Nama: Muhammad Dimas Rifki Irianto Username: dimasrfq Password: dimas123
-
Nama: Ahmad Fasya Adila Username: ahmadfasya Password: fasya123
-
Nama: Muhammad Hiksal Daeng Jusuf Bauw Username: hiksal Password: hiksal123
-
Nama: Robith Naufal Razzak Username: robithnaufal Password: robithnaufal123
-
Nama: Haidaruddin Muhammad Ramdhan Username: haidarx Password: haidarx123
-
-
Dokter:
-
Kode Dokter: FSV Spesialis: Dokter Gigi Username: fanie Password: fanie123
-
Kode Dokter: SOL Spesialis: Dokter Umum Username: solikin Password: solikin123
-
Kode Dokter: GAW Spesialis: Dokter Kulit Username: gedeagung Password: gedeagung123
-
Kode Dokter: COK Spesialis: Psikiater Username: tjokor Password: tjokor123
-
Kode Dokter: ADR Spesialis: Dokter THT Username: drian Password: drian123
-
-
Paramedis:
-
Kode Paramedis: TPR Spesialis: Tim Tapir Username: tapir Password: tapir123
-
Kode Paramedis: KSR Spesialis: Tim Kasuari Username: kasuari Password: kasuari123
-
Kode Paramedis: KMD Spesialis: Tim Komodo Username: komodo Password: komodo123
-
We welcome contributions from anyone. Please create a pull request or open an issue to report bugs or suggest new features.
This project is licensed under the MIT License.