# Getting started

## # Requirements

This package require [Laravel 5.6](https://github.com/laravel/laravel)

## # Installation

### Development inclusion

First of all, you need to create package/ikdev folder in your project root directory and clone ikpanel inside.

```
git clone git@github.com:RobyFerro/ikpanel.git
```

Add repository path in your composer.json

{% code title="composer.json" %}

```
"repositories": [
    {
        "type": "path",
        "url": "packages/ikdev/ikpanel"
    }
],
```

{% endcode %}

### Production inclusion

Edit your composer.json file ad add this:

{% code title="composer.json" %}

```
"repositories": [{
    "type": "github",    
    "url": "git@github.com:RobyFerro/ikpanel.git"
}],
```

{% endcode %}

### Installation

Install ikpanel with your terminal.

{% code title="" %}

```
php composer.phar require ikdev/ikpanel
```

{% endcode %}

Edit auth model in config/auth.php:

{% code title="config/auth.php" %}

```php
'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => \ikdev\ikpanel\app\Users::class,
    ],
],
```

{% endcode %}

Execute the followings commands:

```
php composer.phar update && php composer.phar dump-autoload -o
php artisan vendor:publish --tag=fm-config
php artisan vendor:publish --tag=fm-assets
php artisan vendor:publish --tag=ikpanel --force
php artisan migrate
```

## # Conclusion

\
Congratulations, now you're ready to use/integrate ikpanel in your project!

{% hint style="warning" %}
Default ikpanel credentials:

* Username : <boba.fett@ikpanel.eu>
* Password : 0
  {% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ikdev.gitbook.io/ikpanel/master.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
