Craftable comes with custom Artisan install commands which make the installation like a breeze. You can install either on existing project or use our command-line tool to easily create new Craftable project.
Craftable requires:
It uses Laravel 5.5, so it has to meet also all its requirements
If you want to start on fresh Laravel 5.5, you can use our brackets/craftable-installer
that do all the tricks for you. Let's install it globally:
composer global require "brackets/craftable-installer"
Now you can create a new Craftable project:
craftable new my_project
This is going to install all dependencies, publish all important vendor configs, migrate, setup some configs, webpack config and run migrations.
Command is going to generate and print the password for the default administrator account. Save this password to your clipboard, we are going to need it soon.
Or alternatively, you can use your existing Laravel 5.5 application. Start with requiring these two main packages:
composer require brackets/craftable
composer require --dev brackets/admin-generator
To install this package use:
php artisan craftable:install
This is going to install all dependencies, publish all important vendor configs, migrate, setup some configs, webpack config and run migrations.
Command is going to generate and print the password for the default administrator account. Save this password to your clipboard, we are going to need it soon.
Once installed, navigate your browser to /admin/login
. You should be able to see a login screen.
Use these credentials to log in:
administrator@brackets.sk
craftable:install
command)After authorization you should be able to see a default homepage and two menu items:
At this point you are ready to start building your administration area. You probably want to start building a typical CRUD interface for your eloquent models. You should definitely check our Admin Generator documentation.
In case you rather want to create some atypical custom made administration, then you probably want to head over to Admin UI package.
Have fun & craft something awesome!