# Installation

Here are the steps for installing the Takaden package:

1. Open a terminal and navigate to the root directory of your Laravel project.
2. Run the following command to install the Takaden package via Composer:

   ```
   composer require saagoor/takaden
   ```
3. Publish and run the migrations using following commands:

   ```
   php artisan vendor:publish --tag="takaden-migrations"
   php artisan migrate
   ```
4. You can publish the config file with: (Optional)

   ```
   php artisan vendor:publish --tag="takaden-config"
   ```

Your Takaden installation is now complete and ready to use!
