### Install Laravel Quran Package Source: https://github.com/jhonoryza/laravel-quran/blob/main/README.md Installs the jhonoryza/laravel-quran package into your Laravel project using Composer. This command fetches the package and its dependencies. ```bash composer require jhonoryza/laravel-quran ``` -------------------------------- ### Run Database Migrations Source: https://github.com/jhonoryza/laravel-quran/blob/main/README.md Executes the Laravel Artisan migrate command to create the necessary database tables for the Quran data. This includes 'qurans' and 'quran_verses' tables. ```bash php artisan migrate ``` -------------------------------- ### Publish Configuration File Source: https://github.com/jhonoryza/laravel-quran/blob/main/README.md Publishes the package's configuration file to your Laravel project's config directory. This allows customization of data sources and other settings. ```bash php artisan vendor:publish --tag=quran-config ``` -------------------------------- ### Sync Quran Data Source: https://github.com/jhonoryza/laravel-quran/blob/main/README.md Runs the Artisan command to synchronize Quran data into the database. This command fetches and populates the data based on the configured source. ```bash php artisan quran:sync ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.