PHPackages                             phapnguyenduc/laravel-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. phapnguyenduc/laravel-manager

ActiveLibrary

phapnguyenduc/laravel-manager
=============================

This is laravel manager template

v1.0.0(1y ago)03MITCSS

Since Mar 6Pushed 1y ago1 watchersCompare

[ Source](https://github.com/phapnguyenduc/laravel-manager)[ Packagist](https://packagist.org/packages/phapnguyenduc/laravel-manager)[ RSS](/packages/phapnguyenduc-laravel-manager/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

[Material Dashboard 2 Laravel - Free](https://material-dashboard-laravel.creative-tim.com)
==========================================================================================

[](#material-dashboard-2-laravel---free)

[![version](https://camo.githubusercontent.com/55f30def4a68344c0de905e67851fe21552f126e98f7c99bbe794e47be861c23/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d332e302e302d626c75652e737667)](https://camo.githubusercontent.com/55f30def4a68344c0de905e67851fe21552f126e98f7c99bbe794e47be861c23/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d332e302e302d626c75652e737667)[![license](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)[![GitHub issues open](https://camo.githubusercontent.com/f67b1fb80b5103241895e6bd12c91797605a26e6dd8058bde0d3850e4be16fc5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f637265617469766574696d6f6666696369616c2f6d6174657269616c2d64617368626f6172642d6c61726176656c2e737667)](https://github.com/creativetimofficial/material-dashboard-laravel/issues?q=is%3Aopen+is%3Aissue)[![GitHub issues closed](https://camo.githubusercontent.com/29f7ca746557e7e1aa737a17ae4bf5cf632ac137ac27aec82914f8854cc37e85/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d636c6f7365642d7261772f637265617469766574696d6f6666696369616c2f6d6174657269616c2d64617368626f6172642d6c61726176656c2e737667)](https://github.com/creativetimofficial/material-dashboard-laravel/issues?q=is%3Aissue+is%3Aclosed)

*Frontend version*: Material Dashboard v3.0.0. More info at [ ![](https://camo.githubusercontent.com/6394d2509f57532009f321d5d5642897be85c1898583d084b042117666ba605a/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f70726f64756374732f3135342f6f726967696e616c2f6d6174657269616c2d64617368626f6172642d6c61726176656c2e6a7067)](https://material-dashboard-laravel.creative-tim.com)

Speed up your web development with the Bootstrap 5 Admin Dashboard built for Laravel Framework 9.x and up.

If you want to get more features, go PRO with [Material Dashboard 2 PRO Laravel](https://www.creative-tim.com/product/material-dashboard-pro-laravel).

Table of Contents
-----------------

[](#table-of-contents)

- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Usage](#usage)
- [Versions](#versions)
- [Demo](#demo)
- [Documentation](#documentation)
- [Login](#login)
- [Register](#register)
- [Forgot Password](#forgot-password)
- [Reset Password](#reset-password)
- [User Profile](#user-profile)
- [Dashboard](#dashboard)
- [File Structure](#file-structure)
- [Browser Support](#browser-support)
- [Reporting Issues](#reporting-issues)
- [Licensing](#licensing)
- [Useful Links](#useful-links)
- [Social Media](#social-media)
- [Credits](#credits)

Prerequisites
-------------

[](#prerequisites)

If you don't already have an Apache local environment with PHP and MySQL, use one of the following links:

- Windows:
- Linux &amp; Mac:

Also, you will need to install Composer:
And Laravel:

Installation
------------

[](#installation)

After initializing a fresh instance of Laravel (and making all the necessary configurations), install the preset using one of the provided methods:

### Via composer

[](#via-composer)

1. `Cd` to your Laravel app
2. Type in your terminal: `composer require laravel/ui`
3. Install this preset via `composer require laravel-frontend-presets/material-dashboard`. No need to register the service provider. Laravel 9.x &amp; up can auto detect the package.
4. Run `php artisan ui material` command to install the Material preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
5. In your terminal run `composer dump-autoload`
6. Run `php artisan migrate:fresh --seed` to create basic users table

### By using the archive

[](#by-using-the-archive)

1. In your application's root create a **presets** folder
2. Download the archive of the repo and unzip it
3. Copy and paste the downloaded folder in presets (created in step 2) and rename it to **material**
4. Open `composer.json` file
5. Add `"LaravelFrontendPresets\\MaterialPreset\\": "presets/material/src"` to `autoload/psr-4` and to `autoload-dev/psr-4`
6. Add `LaravelFrontendPresets\MaterialPreset\MaterialPresetServiceProvider::class` to `config/app.php` file
7. Type in your terminal: `composer require laravel/ui`
8. In your terminal run `composer dump-autoload`
9. Run `php artisan ui material` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
10. Add in your **.env** file the info for your database
11. Run `php artisan migrate:fresh --seed` to create basic users table

Usage
-----

[](#usage)

Register a user or login with default user **** and password **secret** from your database and start testing (make sure to run the migrations and seeders for these credentials to be available).

Besides the dashboard, the auth pages, the billing and table pages, there is also has an edit profile page. All the necessary files are installed out of the box and all the needed routes are added to `routes/web.php`. Keep in mind that all of the features can be viewed once you login using the credentials provided or by registering your own user.

Versions
--------

[](#versions)

[![](https://github.com/creativetimofficial/public-assets/raw/master/logos/html-logo.jpg?raw=true)](https://demos.creative-tim.com/material-dashboard/examples/dashboard.html)[![](https://github.com/creativetimofficial/public-assets/raw/master/logos/laravel_logo.png?raw=true)](https://material-dashboard-laravel.creative-tim.com/)

HTMLLaravel[![HTML](https://camo.githubusercontent.com/266ff864950cfd5f509c46e7fcf9ed43d568c09d034f7e098eb90da00c8cea0f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f70726f64756374732f35302f7468756d622f6d6174657269616c2d64617368626f6172642e6a70673f7261773d74727565)](https://www.creative-tim.com/product/material-dashboard)[![Laravel](https://camo.githubusercontent.com/acca343f43dba344953170eff89667bb35d9769fee329bc71de679fd98c1b253/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f70726f64756374732f3135342f7468756d622f6d6174657269616c2d64617368626f6172642d6c61726176656c2e6a70673f7261773d74727565)](https://www.creative-tim.com/product/material-dashboard-laravel)VueReact[![Vue](https://camo.githubusercontent.com/3d4d763930ac8e8bce6c402ee5ebc82757d1b396ac44bd4dd76250475c7b7243/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f70726f64756374732f3539362f7468756d622f7675652d6d6174657269616c2d64617368626f6172642d322e6a70673f7261773d74727565)](https://www.creative-tim.com/product/vue-material-dashboard-2)[![React](https://camo.githubusercontent.com/02b0dc5385b694ecde0a57d77d826b2ec69f21441ac49fa4f0534aac4ed582f6/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f70726f64756374732f37312f7468756d622f6d6174657269616c2d64617368626f6172642d72656163742e6a70673f7261773d74727565)](https://www.creative-tim.com/product/material-dashboard-react)Demo
----

[](#demo)

RegisterLoginDashboard[![](src/material-stubs/screens/register.png)](https://material-dashboard-laravel.creative-tim.com/sign-up)[![](src/material-stubs/screens/login.png)](https://material-dashboard-laravel.creative-tim.com/sign-in)[![](src/material-stubs/screens/dashboard.png)](https://material-dashboard-laravel.creative-tim.com/dashboard)Forgot Password PageReset Password PageProfile Page[![](src/material-stubs/screens/forgot-password.png)](https://material-dashboard-laravel.creative-tim.com/verify)[![](src/material-stubs/screens/reset-password.png)](https://material-dashboard-laravel.creative-tim.com/sign-in)[![](src/material-stubs/screens/profile.png)](https://material-dashboard-laravel.creative-tim.com/user-profile)[View More](https://material-dashboard-laravel.creative-tim.com/dashboard)Documentation
-------------

[](#documentation)

The documentation for the Material Dashboard Laravel is hosted at our [website](https://material-dashboard-laravel.creative-tim.com/documentation/getting-started/installation.html).

### Login

[](#login)

If you are not logged in you can only access this page or the Sign Up page. The default url takes you to the login page where you use the default credentials **** with the password **secret**. Logging in is possible only with already existing credentials. For this to work you should have run the migrations.

The `App/Http/Controllers/SessionsController.php` handles the logging in of an existing user.

```
       public function store()
    {
        $attributes = request()->validate([
            'email' => 'required|email',
            'password' => 'required'
        ]);

        if (! auth()->attempt($attributes)) {
            throw ValidationException::withMessages([
                'email' => 'Your provided credentials could not be verified.'
            ]);
        }

        session()->regenerate();

        return redirect('/dashboard');

    }

```

### Register

[](#register)

You can register as a user by filling in the name, email and password for your account. You can do this by accessing the sign up page from the "**Sign Up**" button in the top navbar or by clicking the "**Sign Up**" button from the bottom of the log in form.. Another simple way is adding **/sign-up** in the url.

The `App/Http/Controllers/RegisterController.php` handles the registration of a new user.

```
   public function store(){

        $attributes = request()->validate([
            'name' => 'required|max:255|unique:users,name',
            'email' => 'required|email|max:255|unique:users,email',
            'password' => 'required|min:5|max:255',
        ]);

        $user = User::create($attributes);
        auth()->login($user);

        return redirect('/dashboard');
    }

```

### Forgot Password

[](#forgot-password)

If a user forgets the account's password it is possible to reset the password. For this the user should click on the "**here**" under the login form.

The `App/Http/Controllers/SessionsController.php ` takes care of sending an email to the user where he can reset the password afterwards.

```
       public function show(){

        request()->validate([
            'email' => 'required|email',
        ]);

        $status = Password::sendResetLink(
            request()->only('email')
        );

        return $status === Password::RESET_LINK_SENT
                    ? back()->with(['status' => __($status)])
                    : back()->withErrors(['email' => __($status)]);
    }

```

### Reset Password

[](#reset-password)

The user who forgot the password gets an email on the account's email address. The user can access the reset password page by clicking the button found in the email. The link for resetting the password is available for 12 hours. The user must add the email, the password and confirm the password for his password to be updated.

The `App/Http/Controllers/SessionsController.php` helps the user reset the password.

```
     public function update(){

        request()->validate([
            'token' => 'required',
            'email' => 'required|email',
            'password' => 'required|min:8|confirmed',
        ]);

        $status = Password::reset(
            request()->only('email', 'password', 'password_confirmation', 'token'),
            function ($user, $password) {
                $user->forceFill([
                    'password' => ($password)
                ])->setRememberToken(Str::random(60));

                $user->save();

                event(new PasswordReset($user));
            }
        );

        return $status === Password::PASSWORD_RESET
                    ? redirect()->route('login')->with('status', __($status))
                    : back()->withErrors(['email' => [__($status)]]);
    }

```

### User Profile

[](#user-profile)

The profile can be accessed by a logged in user by clicking "**User Profile**" from the sidebar or adding **/user-profile** in the url. The user can add information like phone number, location, description or change the name and email.

The `App/Http/Controllers/ProfileController.php ` handles the user's profile information.

```
    public function update()
    {

        $user = request()->user();
        $attributes = request()->validate([
            'email' => 'required|email|unique:users,email,'.$user->id,
            'name' => 'required',
            'phone' => 'required|max:10',
            'about' => 'required:max:150',
            'location' => 'required'
        ]);
        auth()->user()->update($attributes);
        return back()->withStatus('Profile successfully updated.');

}

```

### Dashboard

[](#dashboard)

You can access the dashboard either by using the "**Dashboard**" link in the left sidebar or by adding **/dashboard** in the url after logging in.

File Structure
--------------

[](#file-structure)

```
+---app
|   +---Console
|   |       Kernel.php
|   +---Exceptions
|   |       Handler.php
|   +---Http
|   |   +---Controllers
|   |   |       Controller.php
|   |   |       DashboardController.php
|   |   |       ProfileController.php
|   |   |       SessionsController.php
|   |   |       RegisterController.php
|   |   |
|   |   +---Middleware
|   |   |       Authenticate.php
|   |   |       EncryptCookies.php
|   |   |       PreventRequestsDuringMaintenance.php
|   |   |       RedirectIfAuthenticated.php
|   |   |       TrimStrings.php
|   |   |       TrustHosts.php
|   |   |       TrustProxies.php
|   |   |       VerifyCsrfToken.php
|   |   |
|   |    \---Kernel.php
|   |
|   +---Models
|   |        User.php
|   |
|   \---Proviers
|          AppServiceProvider.php
|          AuthServiceProvider.php
|          BroadcastServiceProvider.php
|          EventServiceProvider.php
|          RouteServiceProvider.php
|
+---database
|   \---seeders
|           DatabaseSeeder.php
|
\---resources
    |
    |
    \---views
        |   welcome.blade.php
        |
        +---sessions
        |   |   create.blade.php
        |   |
        |   \---passwords
        |           reset.blade.php
        |           verify.blade.php
        |
        +---components
        |   |   layout.blade.php
        |   |   plugins.blade.php
        |   |
        |   +---footers
        |   |       auth.blade.php
        |   |       guest.blade.php
        |   |
        |   \---navbars
        |      |   sidebar.blade.php
        |      |
        |      \---navs
        |             auth.blade.php
        |             guest.blade.php
        |
        |
        +---pages
        |   |   billing.blade.php
        |   |   notifications.blade.php
        |   |   profile.blade.php
        |   |   rtl.blade.php
        |   |   static-sign-in.blade.php
        |   |   static-sign-up.blade.php
        |   |   tables.blade.php
        |   |   virtual-reality.blade.php
        |   |
        |   \---laravel-examples
        |           user-management.blade.php
        |           user-profile.blade.php
        |
        +---dashboard
        |       index.blade.php
        |
        +---errors
        |       401.blade.php
        |       403.blade.php
        |       404.blade.php
        |       405.blade.php
        |       419.blade.php
        |       429.blade.php
        |       500.blade.php
        |       503.blade.php
        |
        \---register
                create.blade.php

```

Browser Support
---------------

[](#browser-support)

At present, we officially aim to support the last two versions of the following browsers:

[![](https://camo.githubusercontent.com/fa176aee827519138923ff7be0c35f74f2472a4403dae9daad677df8f4df7c02/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f6368726f6d652e706e67)](https://camo.githubusercontent.com/fa176aee827519138923ff7be0c35f74f2472a4403dae9daad677df8f4df7c02/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f6368726f6d652e706e67) [![](https://camo.githubusercontent.com/0cfceafc9e0fd3989e8ec1fbea726d65dbf8dd80d47d5326f13cb4256e6cae53/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f66697265666f782e706e67)](https://camo.githubusercontent.com/0cfceafc9e0fd3989e8ec1fbea726d65dbf8dd80d47d5326f13cb4256e6cae53/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f66697265666f782e706e67) [![](https://camo.githubusercontent.com/f59a6dc5ff135b1fff85c4095b13feb416664d8f58f10e95065ac699d59e573b/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f656467652e706e67)](https://camo.githubusercontent.com/f59a6dc5ff135b1fff85c4095b13feb416664d8f58f10e95065ac699d59e573b/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f656467652e706e67) [![](https://camo.githubusercontent.com/5d7289627d99a22eaaa9bdd7c3ef6c5091e465fc5fd8c7795d4205dbe95ddce7/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f7361666172692e706e67)](https://camo.githubusercontent.com/5d7289627d99a22eaaa9bdd7c3ef6c5091e465fc5fd8c7795d4205dbe95ddce7/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f7361666172692e706e67) [![](https://camo.githubusercontent.com/641afba397a4fa4e86d0b74e712b2d5f7b41ca068576d14fed11b4b9f0f0ac50/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f6f706572612e706e67)](https://camo.githubusercontent.com/641afba397a4fa4e86d0b74e712b2d5f7b41ca068576d14fed11b4b9f0f0ac50/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f637265617469766574696d5f6275636b65742f6769746875622f62726f777365722f6f706572612e706e67)

Reporting Issues
----------------

[](#reporting-issues)

We use GitHub Issues as the official bug tracker for the Material Dashboard. Here are some advices for our users that want to report an issue:

1. Make sure that you are using the latest version of the Material Dashboard. Check the CHANGELOG from your dashboard on our [website](https://www.creative-tim.com/product/material-dashboard-laravel).
2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Licensing
---------

[](#licensing)

- Copyright 2022 [Creative Tim](https://www.creative-tim.com?ref=readme-md2l)
- Creative Tim [license](https://www.creative-tim.com/license?ref=readme-md2l)

Useful Links
------------

[](#useful-links)

- [Tutorials](https://www.youtube.com/channel/UCVyTG4sCw-rOvB9oHkzZD1w)
- [Affiliate Program](https://www.creative-tim.com/affiliates/new) (earn money)
- [Blog Creative Tim](http://blog.creative-tim.com/)
- [Free Products](https://www.creative-tim.com/bootstrap-themes/free) from Creative Tim
- [Premium Products](https://www.creative-tim.com/bootstrap-themes/premium?ref=md2l-readme) from Creative Tim
- [React Products](https://www.creative-tim.com/bootstrap-themes/react-themes?ref=md2l-readme) from Creative Tim
- [VueJS Products](https://www.creative-tim.com/bootstrap-themes/vuejs-themes?ref=md2l-readme) from Creative Tim
- [More products](https://www.creative-tim.com/bootstrap-themes?ref=md2l-readme) from Creative Tim
- Check our Bundles [here](https://www.creative-tim.com/bundles??ref=md2l-readme)

### Social Media

[](#social-media)

### Creative Tim

[](#creative-tim)

Twitter:

Facebook:

Dribbble:

Instagram:

### Updivision:

[](#updivision)

Twitter:

Facebook:

Linkedin:

Updivision Blog:

Credits
-------

[](#credits)

- [Creative Tim](https://creative-tim.com/?ref=md2l-readme)
- [UPDIVISION](https://updivision.com)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance45

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

432d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5fb76bd88c50940ed15611ef5a07b230c8d5e398d478f6b0f5d21b25530987b1?d=identicon)[phapnguyenduc](/maintainers/phapnguyenduc)

---

Top Contributors

[![phapnguyenduc](https://avatars.githubusercontent.com/u/145675193?v=4)](https://github.com/phapnguyenduc "phapnguyenduc (2 commits)")

### Embed Badge

![Health badge](/badges/phapnguyenduc-laravel-manager/health.svg)

```
[![Health](https://phpackages.com/badges/phapnguyenduc-laravel-manager/health.svg)](https://phpackages.com/packages/phapnguyenduc-laravel-manager)
```

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

22.8k69.3k](/packages/grumpydictator-firefly-iii)[teamtnt/tntsearch

A fully featured full text search engine written in PHP

3.2k3.0M28](/packages/teamtnt-tntsearch)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[pdffiller/qless-php

PHP Bindings for qless

29113.2k1](/packages/pdffiller-qless-php)[concrete5/core

Concrete core subtree split

19159.3k48](/packages/concrete5-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
