Frontend version: Soft UI Dashboard v1.0.0. More info at https://www.creative-tim.com/product/soft-ui-dashboard-pro/?ref=sudpl-readme
Soft UI Dashboard PRO Laravel combines hundreds of premium Bootstrap 5 frontend components with an out of the box Laravel backend. Everything enhanced by Livewire & Alpine.js. In short, it's the ultimate fullstack resource we coded with UPDIVISION to help developers build complex apps faster.
The look & feel is inspired by one of the hottest design trends right now, Soft UI. Add in ready-made Laravel CRUDs and one of the best libraries for building dynamic UIs and you`ve got an awesome starter pack for building web apps.
You're getting a multi-purpose tool for building complex apps.
Soft UI Dashboard PRO Laravel at a glance:
The backend is fully integrated, meaning you can easily tick all the boxes for a fully-functional admin panel for your custom application. You have hundreds of UI components to choose from, which you can easily edit using Sass files and classes. In short, everything you need so that your app looks like you want it to look and does what you want it to do.
Check out the open-source demo version for a taste of what Soft Ui Dashboard PRO Laravel has to offer.
If you don't already have an Apache local environment with PHP and MySQL, use one of the following links:
Also, you will need to install Composer: https://getcomposer.org/doc/00-intro.md
And Laravel: https://laravel.com/docs/10.x
composer install
.env.example
to .env
and updated the configurations (mainly the database configuration)php artisan key:generate
php artisan migrate --seed
to create the database tables and seed the roles and users tablesphp artisan storage:link
to create the storage symlink (if you are using Vagrant with Homestead for development, remember to ssh into your virtual machine and run the command from there).Register a user or login with the default users with different roles from your database and start testing (make sure to run the migrations and seeders for these credentials to be available):
Besides the numerous types of dashboard, you can find pages for editing your profile, pages for managing the users, the roles, the items, the categories and the tags. There are also static pages for profile, for users, for projects, for accounts, for various applications, for ecommerce and different styles of pages for authentication. 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.
HTML | Laravel Livewire |
---|---|
Register | Login |
---|---|
Forgot Password Page | Reset Password Page |
---|---|
Dashboard | Virtual Reality |
---|---|
Profile Page | User Management |
---|---|
Role Management | Item Management |
---|---|
Category Management | Tag Management |
---|---|
The documentation for the Soft UI Dashboard Laravel is hosted at our website.
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 admin@softui.com with the password secret but you can change them with the credentials for creator and for member. Logging in is possible only with already existing credentials. For this to work you should have run the migrations. The user also has the option to choose if he wants to be remembered or not.
The App\Http\Livewire\Auth\Login
handles the logging in of an existing user.
public function login() {
$credentials = $this->validate();
if(auth()->attempt(['email' => $this->email, 'password' => $this->password], $this->remember_me)) {
$user = User::where(["email" => $this->email])->first();
auth()->login($user, $this->remember_me);
return redirect()->intended('/dashboard-default');
}
else{
return $this->addError('email', trans('auth.failed'));
}
You can register as a user by filling in the name, email, role and password for your account. For your role you can choose between the Admin, Creator and Member. It is important to know that an admin user has access to all the pages and actions, can delete, add and edit another users, other roles, items, tags or categories; a creator user has acces to category, tag and item managemen, but can not add, edit or delete other users; a member user has access to the item management but can not take any action. 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 /register in the url.
The App\Http\Livewire\Auth\SignUp
handles the registration of a new user.
public function register() {
$this->validate();
$user = User::create([
'name' => $this->name,
'email' => $this->email,
'role_id' => $this->role_id,
'password' => Hash::make($this->password)
]);
auth()->login($user);
return redirect('/dashboard-default');
}
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 or add /forgot-password in the url.
The App\Http\Livewire\Auth\ForgotPassword
takes care of sending an email to the user where he can reset the password afterwards.
public function recoverPassword() {
$this->validate();
$user = User::where('email', $this->email)->first();
if($user){
$this->notify(new ResetPassword($user->id));
$this->showSuccesNotification = true;
$this->showFailureNotification = false;
} else {
$this->showFailureNotification = true;
}
}
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 new password and confirm the password for his password to be updated. The user is redirected to the login page.
The App\Http\Livewire\Auth\ResetPassword
helps the user reset the password.
public function resetPassword() {
$this->validate();
$existingUser = User::where('id', $this->urlID)->first();
if($existingUser) {
$existingUser->update([
'password' => Hash::make($this->password)
]);
return redirect('/login');
} else {
$this->showFailureNotification = true;
}
}
The profile can be accessed by a logged in user by clicking "User Profile" from the sidebar or adding /laravel-user-profile in the url. The user can add information like birthday, gender, phone number, location, language or skills.
The App\Http\Livewire\LaravelExamples\UserProfile
handles the user's profile information.
public function save() {
$this->validate();
$this->user->save();
$this->showSuccesNotification = true;
}
The user management can be accessed by clicking "User Managmenet" from the Laravel Examples section from the sidebar or by adding "/laravel-users-management in the url. This page is available for users with the Admin role and the user is able to add, edit and delete other users. For adding a new user you can press the "+ New User" button or add in the url "/laravel-new-user". If you would like to edit or delete an user you can click on the Action column. It is also possible to sort the fields or to search in the fields.
On the page for adding a new user you will find a form which allows you to fill the information. All pages are generated using blade templates.
In /resources/views/livewire/laravel-examples/laravel-new-user.blade.php
:
<div class="col-12 col-sm-6">
<label>{{ __('First Name') }}</label>
<div class="@error('first_name')has-danger @enderror">
<input wire:model="first_name" class="multisteps-form__input form-control
@error('first_name')is-invalid @enderror" type="text" placeholder="eg. Michael" />
</div>
@error('first_name') <div class="text-danger text-xs">{{ $message }}</div>@enderror
</div>
The App\Http\Livewire\LaravelExample\LaravelNewUser
takes care of data validation and creating the new user:
public function firstStepSubmit() {
$validatedData = $this->validate([
'first_name' => 'max:20',
'last_name' => 'max:20',
'role_id' => ['required', Rule::in(collect(DB::table('roles')->pluck('id')))],
'company' => 'nullable',
'email' => 'required|email|unique:users',
'password' => 'required|min:6|same:passwordConfirmation',
]);
$this->currentStep = 2;
}
Once the user pressed Send at the end of the form the new user is added to the table.
For authorizing this actions have been used policies such as App\Policies\UserPolicy
:
/**
* Determine whether the authenticate user can manage other users.
*
* @param \App\User $user
* @return boolean
*/
public function manageUsers(User $user)
{
return $user->isAdmin();
}
The PRO version lets you add roles to the user. The default roles are Admin, Creator and Member. The role management can be accessed by clicking "Role Managmenet" from the Laravel Examples section of the sidebar or by adding "/laravel-roles-management in the url. Thia page is available for users with the Admin role and the user is able to add, edit and delete roles. For adding a new role you can press the "+ New Role" button or add in the url "/laravel-new-role". If you would like to edit or delete a role you can click on the Action column. It is also possible to sort the fields or to search in the fields.
On the page for adding a new role you will find a form which allows you to fill the name and the description of the new role.
The App\Http\Livewire\LaravelExample\NewRole
takes care of data validation and creation of a the new role:
public function addRole() {
$this->validate();
Role::create([
'name' => $this->name,
'description' => $this->description
]);
$this->showSuccesNotification = true;
$this->reset(['name', 'description']);
}
The theme has some default categories but an Admin or Creator user can manage these categories.The category management can be accessed by clicking "Category Management" from the Laravel Examples section of the sidebar or by adding "/laravel-category-management in the url. The authenticated user can add, edit and delete categories. For adding a new category you can press the "+ New Category" button or add in the url "/laravel-new-category". If you would like to edit or delete a category you can click on the Action column. It is also possible to sort the fields or to search in the fields.
On the page for adding a new category you will find a form which allows you to fill the name and the description of the new category.
The App\Http\Livewire\LaravelExample\EditCategory
takes care of data validation when changing a category and updating it:
public function rules() {
return [
'category.name' => ['required', Rule::unique('categories', 'name')->ignore($this->category)],
'category.description' => ''
];
}
public function editRole() {
$this->validate();
$this->category->update();
$this->showSuccesNotification = true;
}
The theme has some default tags but an Admin or Creator user can manage these tags.The tag management can be accessed by clicking "Tag Managmenet" from the Laravel Examples section from the sidebar or by adding "/laravel-tag-management in the url. The authenticated user can add, edit and delete tags. For adding a new tag you can press the "+ New Tag" button or add in the url "/laravel-new-tag". If you would like to edit or delete a tag you can click on the Action column. It is also possible to sort the fields or to search in the fields.
On the page for adding a new category you will find a form which allows you to fill the name and the description of the new tag and on the edit page you will find a similar form for the changes you wish to make.
The /resources/views/livewire/laravel-examples/edit-tag.blade.php
is the blade template for editing a tag:
<div>
<label class="mt-4">{{ __('Tag Description') }}</label>
<div class="@error('tag.color') has-danger @enderror">
<input wire:model="tag.color" type="color" name="color" id="input-name"
class="form-control @error('tag.color') is-invalid @enderror" placeholder="Color"
value="{{ old('color') }}" required>
</div>
@error('tag.color') <div class="text-danger text-xs">{{ $message }}</div>@enderror
</div>
Item Management is the most advanced example included in the PRO theme because every item has a picture, has a category and has multiple tags. The item management can be accessed by clicking "Item Managmenet" from the Laravel Examples section of the sidebar or by adding "/laravel-item-management in the url. The authenticated user as an Admin or Creator can add, edit and delete items. For adding a new item you can press the "+ New Item" button or add in the url "/laravel-new-item". If you would like to edit or delete an item you can click on the Action column. It is also possible to sort the fields or to search in the fields. The Member user can not take any actions on the item, he is only able to see the item management table.
On the page for adding a new item you will find a form which allows you to add an image of the item, to fill the name, excerpt, description of the item, a dropdown to choose the category and a multiselect for the tags.
The App\Http\Livewire\LaravelExample\NewItem
takes care of data validation when adding a new item and of the item creation(see snippet below):
public function addItem() {
$this->validate();
$item = Item::create([
'name' => $this->name,
'excerpt' => $this->excerpt,
'description' => $this->description,
'category_id' => $this->category_id,
'status' => $this->status,
'show_on_homepage' => $this->showOnHomepage,
'options' => $this->options
]);
$this->date && $item->update([
'date' => Carbon::parse($this->date)->format('Y-m-d')
]);
$this->photo && $item->update([
'picture' => $this->photo->store('/', 'items')
]);
$item->tags()->sync($this->tags_id, false);
}
For deleting an item is necessary to remove the association between item and tags. The App\Http\Livewire\LaravelExample\ItemsManagement
handles the deletion of an item:
public function delete($id) {
$item = Item::find($id);
$item->tags()->detach();
$item->delete();
$this->showSuccesNotification = true;
}
app
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ └── Controller.php
│ ├── Kernel.php
│ ├── Livewire
│ │ ├── Applications
│ │ │ ├── Analytics.php
│ │ │ ├── Calendar.php
│ │ │ ├── Datatables.php
│ │ │ ├── Kanban.php
│ │ │ └── Wizard.php
│ │ ├── Auth
│ │ │ ├── ForgotPassword.php
│ │ │ ├── Login.php
│ │ │ ├── Logout.php
│ │ │ ├── Register.php
│ │ │ └── ResetPassword.php
│ │ ├── Authentication
│ │ │ ├── Error
│ │ │ │ ├── Error404.php
│ │ │ │ └── Error500.php
│ │ │ ├── Lock
│ │ │ │ ├── LockBasic.php
│ │ │ │ ├── LockCover.php
│ │ │ │ └── LockIllustration.php
│ │ │ ├── Reset
│ │ │ │ ├── ResetBasic.php
│ │ │ │ ├── ResetCover.php
│ │ │ │ └── ResetIllustration.php
│ │ │ ├── Signin
│ │ │ │ ├── SigninBasic.php
│ │ │ │ ├── SigninCover.php
│ │ │ │ └── SigninIllustration.php
│ │ │ ├── Signup
│ │ │ │ ├── SignupBasic.php
│ │ │ │ ├── SignupCover.php
│ │ │ │ └── SignupIllustration.php
│ │ │ └── Verification
│ │ │ ├── VerificationBasic.php
│ │ │ ├── VerificationCover.php
│ │ │ └── VerificationIllustration.php
│ │ ├── Dashboard
│ │ │ ├── Automotive.php
│ │ │ ├── Crm.php
│ │ │ ├── DashboardDefault.php
│ │ │ ├── SmartHome.php
│ │ │ └── Vr
│ │ │ ├── VirtualInfo.php
│ │ │ └── VirtualReality.php
│ │ ├── Ecommerce
│ │ │ ├── EcommerceOverview.php
│ │ │ ├── Orders
│ │ │ │ ├── OrderDetails.php
│ │ │ │ └── OrderList.php
│ │ │ ├── Products
│ │ │ │ ├── EditProduct.php
│ │ │ │ ├── NewProduct.php
│ │ │ │ ├── ProductPage.php
│ │ │ │ └── ProductsList.php
│ │ │ └── Referral.php
│ │ ├── LaravelExamples
│ │ │ ├── CategoryManagement.php
│ │ │ ├── EditCategory.php
│ │ │ ├── EditItem.php
│ │ │ ├── EditRole.php
│ │ │ ├── EditTag.php
│ │ │ ├── EditUser.php
│ │ │ ├── Error
│ │ │ │ └── PageError.php
│ │ │ ├── ItemsManagement.php
│ │ │ ├── LaravelNewUser.php
│ │ │ ├── NewCategory.php
│ │ │ ├── NewItem.php
│ │ │ ├── NewRole.php
│ │ │ ├── NewTag.php
│ │ │ ├── RolesManagement.php
│ │ │ ├── TagsManagement.php
│ │ │ ├── UserProfile.php
│ │ │ └── UsersManagement.php
│ │ └── Pages
│ │ ├── Account
│ │ │ ├── Billing.php
│ │ │ ├── Invoice.php
│ │ │ ├── Security.php
│ │ │ └── Settings.php
│ │ ├── Pricing.php
│ │ ├── Profile
│ │ │ ├── AllProjects.php
│ │ │ ├── Overview.php
│ │ │ └── Teams.php
│ │ ├── Projects
│ │ │ ├── General.php
│ │ │ ├── NewProject.php
│ │ │ └── Timeline.php
│ │ ├── Rtl.php
│ │ ├── Users
│ │ │ ├── NewUser.php
│ │ │ └── Reports.php
│ │ └── Widgets.php
│ └── Middleware
│ ├── Authenticate.php
│ ├── EncryptCookies.php
│ ├── PreventRequestsDuringMaintenance.php
│ ├── RedirectIfAuthenticated.php
│ ├── TrimStrings.php
│ ├── TrustHosts.php
│ ├── TrustProxies.php
│ └── VerifyCsrfToken.php
├── Models
│ ├── Category.php
│ ├── Item.php
│ ├── Role.php
│ ├── Tag.php
│ └── User.php
├── Notifications
│ └── MailNotification.php
├── Policies
│ ├── CategoryPolicy.php
│ ├── ItemPolicy.php
│ ├── RolePolicy.php
│ ├── TagPolicy.php
│ └── UserPolicy.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── View
└── Components
├── input
│ └── selectmultiple.php
└── Layouts
├── App.php
└── ...
At present, we officially aim to support the last two versions of the following browsers:
We use GitHub Issues as the official bug tracker for the Soft UI Dashboard. Here are some advices for our users that want to report an issue:
Twitter: https://twitter.com/CreativeTim?ref=sudpl-readme
Facebook: https://www.facebook.com/CreativeTim?ref=sudpl-readme
Dribbble: https://dribbble.com/creativetim?ref=sudpl-readme
Instagram: https://www.instagram.com/CreativeTimOfficial?ref=sudpl-readme
Twitter: https://twitter.com/updivision?ref=sudpl-readme
Facebook: https://www.facebook.com/updivision?ref=sudpl-readme
Linkedin: https://www.linkedin.com/company/updivision?ref=sudpl-readme
Updivision Blog: https://updivision.com/blog/?ref=sudpl-readme