ikpanel
  • Getting started
  • Introduction
    • Configuration
      • Policy
      • Navigation menu
      • Dashboard
    • Backup & Restore
      • SCP
      • Dropbox
    • Users
    • Roles
  • Modules
    • Blog
    • Calendar
    • Gallery
    • Newsletter
    • E-Commerce
  • Extend
    • Module Development
Powered by GitBook
On this page
  • # Requirements
  • # Installation
  • Development inclusion
  • Production inclusion
  • Installation
  • # Conclusion

Was this helpful?

Getting started

NextConfiguration

Last updated 6 years ago

Was this helpful?

# Requirements

This package require

# 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

composer.json
"repositories": [
    {
        "type": "path",
        "url": "packages/ikdev/ikpanel"
    }
],

Production inclusion

Edit your composer.json file ad add this:

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

Installation

Install ikpanel with your terminal.

php composer.phar require ikdev/ikpanel

Edit auth model in config/auth.php:

config/auth.php
'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => \ikdev\ikpanel\app\Users::class,
    ],
],

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!

Default ikpanel credentials:

  • Password : 0

Username :

Laravel 5.6
boba.fett@ikpanel.eu