Edit

Install Optional Packages


Each Backpack package has its own installation instructions in its readme file. We duplicate them here for easy access.

Everything else is optional. Your project might use them or it might not. Only do each of the following steps if you need the functionality that package provides.

BackupManager

>> See screenshots and installation

1) In your terminal

# Install the package
composer require backpack/backupmanager

# Publish the config file and lang files:
php artisan vendor:publish --provider="Backpack\BackupManager\BackupManagerServiceProvider"

# [optional] Add a sidebar_content item for it
php artisan backpack:add-sidebar-content "<li class='nav-item'><a class='nav-link' href='{{ backpack_url('backup') }}'><i class='nav-icon la la-hdd-o'></i> Backups</a></li>"

2) Add a new "disk" to config/filesystems.php:

// used for Backpack/BackupManager
'backups' => [
    'driver' => 'local',
    'root'   => storage_path('backups'), // that's where your backups are stored by default: storage/backups
],

This is where you choose a different driver if you want your backups to be stored somewhere else (S3, Dropbox, Google Drive, Box, etc).

3) [optional] Modify your backup options in config/backup.php

4) [optional] Instruct Laravel to run the backups automatically in your console kernel:

// app/Console/Kernel.php

protected function schedule(Schedule $schedule)
{
   $schedule->command('backup:clean')->daily()->at('04:00');
   $schedule->command('backup:run')->daily()->at('05:00');
}

5) [optional] If you need to change the path to the mysql_dump command, you can do that in your config/database.php file. For MAMP on Mac OS, add these to your mysql connection:

'dump' => [
    'dump_binary_path' => '/Applications/MAMP/Library/bin/', // only the path, so without `mysqldump` or `pg_dump`
    'use_single_transaction',
    'timeout' => 60 * 5, // 5 minute timeout
]

LogManager

>> See screenshots and installation

1) Install via composer:

composer require backpack/logmanager

2) Add a "storage" filesystem disk in config/filesystems.php:

// used for Backpack/LogManager
'storage' => [
    'driver' => 'local',
    'root'   => storage_path(),
],

3) Configure Laravel to create a new log file for every day, in your .ENV file, if it's not already. Otherwise there will only be one file at all times.

APP_LOG=daily

or directly in your config/app.php file:

'log' => env('APP_LOG', 'daily'),

4) [optional] Add a menu item for it in resources/views/vendor/backpack/base/inc/sidebar_content.blade.php or menu.blade.php:

php artisan backpack:add-sidebar-content "<li class='nav-item'><a class='nav-link' href='{{ backpack_url('log') }}'><i class='nav-icon la la-terminal'></i> Logs</a></li>"

Settings

An interface for the administrator to easily change application settings. Uses Laravel Backpack.

>> See screenshots and installation

Installation:

# install the package
composer require backpack/settings

# run the migration
php artisan vendor:publish --provider="Backpack\Settings\SettingsServiceProvider"
php artisan migrate

# [optional] add a menu item for it to the sidebar_content file
php artisan backpack:add-sidebar-content "<li class='nav-item'><a class='nav-link' href='{{ backpack_url('setting') }}'><i class='nav-icon fa fa-cog'></i> Settings</a></li>"

# [optional] insert some example dummy data to the database
php artisan db:seed --class="Backpack\Settings\database\seeds\SettingsTableSeeder"

PageManager

An admin panel where you, as a developer, can define templates with different fields, and the admin can choose between those templates to create/edit pages with content.

>> See screenshots and installation

PermissionManager

An admin panel for user authentication on Laravel 5, using Backpack\CRUD. Add, edit, delete users, roles and permission.

>> See screenshots and installation

MenuCrud

An admin panel for menu items on Laravel 5, using Backpack\CRUD. Add, edit, reorder, nest, rename menu items and link them to Backpack\PageManager pages, external link or custom internal link.

>> GitHub

NewsCrud

Since NewsCRUD does not provide any extra functionality other than Backpack\CRUD, it is not a package. It's just a tutorial to show you how this can be achieved. In the future, CRUD examples like this one will be easily installed from the command line, from a central repository. Until then, you will need to manually create the files.

>> GitHub

FileManager

Backpack admin interface for files and folders, using barryvdh/laravel-elfinder.

>> See screenshots and installation

Installation:

composer require backpack/filemanager
php artisan backpack:filemanager:install

Like our open-core?

Then you'll love our premium add-ons - productivity tools and tons of new features.