Backpack helps you build admin panels faster by:
For the simplest projects, you will never need to know how it works, never need to customize anything but the config/backpack/base.php
file. But here's how everything works, below.
Backpack pulls in our custom HTML template, Backstrap, and adds our own CSS file on top, for a few cosmetic improvements. We've chosen to base Backstrap on CoreUI, because it provides design blocks for all common features of an administration panel. When you decide to build custom pages for your Admin Panel, you can just use Backstrap's HTML blocks - no designer needed. You can see all the HTML components Backstrap provides on backstrap.net, and copy-paste HTML from there, or use CoreUI's documentation for details.
After installation, you'll notice Backpack has added a few files:
1) Views to resources/views/vendor/backpack/base/
inc/sidebar_content.blade.php
;dashboard.blade.php
;Those files are used to show the contents of the menu to the left (sidebar), and the first page the admin sees when logging in (dashboard). They've been published there so that you can easily modify their contents, by editing their HTML or adding dynamic content through widgets.
2) Model to app/Models/BackpackUser.php
Notice that BackpackUser
extends your own user model. Backpack will be using BackpackUser
for authentication and management, not your User
, so if there's anything that's specific to your admins (accessors, mutators, methods), you can use this model to define them.
3) Middleware to app/Http/Middleware/CheckIfAdmin.php
This middleware is used to test if users have access to admin panel pages. You can (and should customize it) if you have both users and admins in your app.
4) Route file to ```routes/backpack/custom.php```**
This route file is for convenience and convention. We recommend you place all your admin panel routes here.
After installation, you'll notice Backpack has added a few blade files in resources/views/vendor/backpack/base/
:
inc/sidebar_content.blade.php
;dashboard.blade.php
;Those files are used to show the contents of the menu to the left (sidebar), and the first page the admin sees when logging in (dashboard). They've been published there so that you can easily modify their contents, by editing their HTML or adding dynamic content through widgets.
You can change any blade file to your own needs. Determine what file you'd need to modify if you were to edit directly in the project's vendor folder, then go to resources/views/vendor/backpack/base
and create a file with the exact same name. Backpack\Base will use this new file, instead of the one in the package.
For example, if you want to add an item to the top menu, you could just create a file called resources/views/vendor/backpack/base/inc/topbar_left_content.php
. Backpack will now use this file's contents, instead of vendor/backpack/base/src/resources/views/inc/topbar_left_content.php
If you'll take a look inside any Backpack package, you'll notice the src
directory is organised like a standard Laravel app. This is intentional. It should help you easily understand how the package works, and how you can overwrite/customize its functionality.
app
Console
Commands
Http
Controllers
Middleware
Requests
Notifications
config
resources
lang
views
routes
When installed, Backpack provides a way for admins to login, recover password and register (don't worry, register is only enabled on localhost
). It does so with its own authentication controllers, models and middleware. If you have regular end-users (not admins), you can keep the user authentication completely separate from admin authentication. You can change which model, middleware classes Backpack uses, inside the config/backpack/base.php
config file.
The
BackpackUser
model extends Laravel's defaultApp\User
model. This assumes you weren't already using this model, or theusers
table, for anything else. If you were, please read below.
If you want to use a different User model than App\User
or you've changed its location, please:
config/backpack/base.php
instead of the BackpackUser
model Backpack has published to your app;\Backpack\Base\app\Models\BackpackUser::class
;If you already use the users
table to store end-users (not admins), you will need a way to differentiate admins from regular users. Backpack does not force one method on you. Here are two methods we recommend, below:
is_admin
column to your users
table, then changing the app/Http/Middleware/CheckIfAdmin::checkIfUserIsAdmin()
method to test that attribute exists, and is true;config/backpack/base.php
;By default, all administration panel routes will be behind an /admin/
prefix, and under an CheckIfAdmin
middleware. You can change that inside config/backpack/base.php
.
Inside your admin controllers or views, please:
backpack_auth()
instead of auth()
;backpack_user()
instead of auth()->user
;backpack_url()
instead of url()
;This will make sure you're using the model, prefix & middleware that you've defined in config/backpack/base.php
. In case you decide to make changes there later, you won't need to change anything else. There are also other backpack helpers you can use.
When logged in, the admin can click his/her name to go to his "account" page. There, they will be able to do a few basic operations: change name, email or password.
Changing name and email is done inside Backpack\Base\app\Http\Controllers\Auth\MyAccountController
, using the getAccountInfoForm()
and postAccountInfoForm()
methods. If you want to change how this works, we recommend you create a routes/backpack/base.php
file, copy-paste all Backpack\Base routes there and change whatever routes you need, to point to your own controller, where you can do whatever you want.
If you only want to add a few new inputs, you can do that by creating a file in resources/views/vendor/backpack/base/my_account.blade.php
that uses code from the same file in the Backpack package, but adds the inputs you need. Remember to also make these fields $fillable
in your User model.
Password changing is done inside Backpack\Base\app\Http\Controllers\Auth\MyAccountController
. If you want to change how this works, we recommend you create a routes/backpack/base.php
file, copy-paste all Backpack\Base routes there and change whatever you need. You can then point the route to your own controller, where you can do whatever you want.
We use prologue/alerts to trigger notifications. Check out its documentation for the entire syntax. Basic examples:
public function foo()
{
\Alert::add('info', 'This is a blue bubble.');
\Alert::add('warning', 'This is a yellow/orange bubble.');
\Alert::add('error', 'This is a red bubble.');
\Alert::add('success', '<strong>Got it</strong><br>This is HTML in a green bubble.');
\Alert::add('primary', 'This is a dark blue bubble.');
\Alert::add('secondary', 'This is a grey bubble.');
\Alert::add('light', 'This is a light grey bubble.');
\Alert::add('dark', 'This is a black bubble.');
// the layout will make sure to show your notifications
return view('some_view');
}
public function bar()
{
\Alert::add('success', 'You have successfully logged in')->flash();
// please note the above flash() method; this will store your notification in a session variable, so that you can redirect to another page, but the notification will still be shown (on the page you redirect to)
return Redirect::to('some-url');
}
We use Noty to show notifications from JavaScript, on the same page. Check out its page for more detailed use. Basic example:
new Noty({
type: "success",
text: 'Some notification text',
}).show();
// available types: success, info, warning/notice, error/danger, primary, secondary, dark, light
You can use these helpers anywhere in your app (models, views, controllers, requests, etc), except the config files, since the config files are loaded before the helpers.
backpack_url($path)
- Use this helper instead of url()
to generate paths with the admin prefix prepended.backpack_auth()
- Returns the Auth facade, using the current Backpack guard. Basically a shorthand for \Auth::guard(backpack_guard_name())
. Use this instead of auth()
inside your admin panel pages.backpack_middleware()
- Returns the key for the admin middleware. Default is admin
.backpack_authentication_column()
- Returns the username column. The Laravel and Backpack default is email
.backpack_users_have_email()
- Tests that the email
column exists on the users table and returns true/false.backpack_avatar($user)
- Receives a user object and returns a path to an avatar image, according to the preferences in the config file (gravatar, placeholder or custom).backpack_guard_name()
- Returns the guard used for Backpack authentication.backpack_user()
- Returns the current Backpack user, if logged in. Basically a shorthand for \Auth::guard(backpack_guard_name())->user()
. Use this instead of auth()->user()
inside your admin pages.When installing Backpack, a few error views are published into resources/views/errors
, if you don't already have other files there. This is because Laravel does not provide error pages for all HTTP error codes. Having these files in your project will make sure that, if a user gets an HTTP error, at least it will look decent. Error pages are provided for the following error codes: 400
, 401
, 403
, 404
, 405
, 408
, 429
, 500
, 503
.
Then you'll love our premium add-ons - productivity tools and tons of new features.