All Projects β†’ laravel-frontend-presets β†’ black-dashboard

laravel-frontend-presets / black-dashboard

Licence: MIT license
Black Frontend Preset For Laravel Framework 9.x and Up

Programming Languages

CSS
56736 projects
Blade
752 projects
javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to black-dashboard

yoru.
A black Substratum theme for Samsung Oreo only.
Stars: ✭ 21 (-74.39%)
Mutual labels:  black
ttall
Laravel fronend preset for TTALL stack - Tailwindcss | Turbolinks | Alpine.js | Laravel | Livewire πŸš€
Stars: ✭ 50 (-39.02%)
Mutual labels:  preset
jira-sprint-analytics
No description or website provided.
Stars: ✭ 13 (-84.15%)
Mutual labels:  black
video coloriser
Pytorch Convolutional Neural Net and GAN based video coloriser that converts black and white video to colorised video.
Stars: ✭ 29 (-64.63%)
Mutual labels:  black
blackbricks
Black for Databricks notebooks
Stars: ✭ 40 (-51.22%)
Mutual labels:  black
inertia
A preset for installing @inertiajs in a fresh Laravel project
Stars: ✭ 80 (-2.44%)
Mutual labels:  preset
reactant
Generate code for "models, views, and urls" based on Python type annotations. Supports Django REST, SQLAlchemy, Peewee.
Stars: ✭ 14 (-82.93%)
Mutual labels:  black
babel-preset-amex
✨ Standard babel preset for American Express
Stars: ✭ 14 (-82.93%)
Mutual labels:  preset
argon-dashboard-asp-net
Start your development with a Bootstrap 4 Admin Dashboard built for ASP.NET Core framework, the newest go-to technology from Microsoft for top companies.
Stars: ✭ 176 (+114.63%)
Mutual labels:  creative-tim
argon-dashboard-flask
Argon Dashboard - Flask Template | Creative-Tim
Stars: ✭ 52 (-36.59%)
Mutual labels:  creative-tim
python-lint
GitHub Action for Lint your code
Stars: ✭ 57 (-30.49%)
Mutual labels:  black
yiq
Returns white when a color is dark and black when a color is light.
Stars: ✭ 24 (-70.73%)
Mutual labels:  black
Black-Tool
Install the tools and start Attacking , black-tool v5.0 ! ⬛
Stars: ✭ 239 (+191.46%)
Mutual labels:  black
DDBlackWhite
🎨🚫 Make your image black and white
Stars: ✭ 22 (-73.17%)
Mutual labels:  black
awesome-python-code-formatters
A curated list of awesome Python code formatters
Stars: ✭ 168 (+104.88%)
Mutual labels:  black
macos-blank-screensaver
Blank (black) screensaver for MacOS
Stars: ✭ 27 (-67.07%)
Mutual labels:  black
uikit3
Laravel 5.5+ Front-end preset for UIKit 3.
Stars: ✭ 44 (-46.34%)
Mutual labels:  preset
zurb-foundation
Zurb Foundation Frontend Preset For Laravel Framework 5.5 and Up
Stars: ✭ 51 (-37.8%)
Mutual labels:  preset
homebridge-magichome-platform
Homebridge Plugin for MagicHome LED Strips with Preset Scene Automation Support (Cycle Color/Fade/Strobe)
Stars: ✭ 46 (-43.9%)
Mutual labels:  preset
blackdoc
run black on documentation code snippets
Stars: ✭ 31 (-62.2%)
Mutual labels:  black

Black Dashboard Laravel - Free Frontend Preset for Laravel Tweet

version license GitHub issues open GitHub issues closed

Frontend version: Black Dashboard v1.0.0. More info at https://www.creative-tim.com/product/black-dashboard

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

If you want to get more features, go PRO with Black Dashboard PRO Laravel.

Note

We recommend installing this preset on a project that you are starting from scratch, otherwise your project's design might break.

Prerequisites

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/9.x/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

  1. Cd to your Laravel app
  2. Type in your terminal: composer require laravel/ui and php artisan ui vue --auth
  3. Install this preset via composer require laravel-frontend-presets/black-dashboard. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
  4. Run php artisan ui black 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)
  5. In your terminal run composer dump-autoload
  6. Run php artisan migrate --seed to create basic users table

By using the archive

  1. In your application's root create a presets folder
  2. Download an archive of the repo and unzip it
  3. Copy and paste black-dashboard-master folder in presets (created in step 2) and rename it to black
  4. Open composer.json file
  5. Add "LaravelFrontendPresets\\BlackPreset\\": "presets/black/src" to autoload/psr-4 and to autoload-dev/psr-4
  6. Add LaravelFrontendPresets\BlackPreset\BlackPresetServiceProvider::class to config/app.php file
  7. Type in your terminal: composer require laravel/ui and php artisan ui vue --auth
  8. In your terminal run composer dump-autoload
  9. Run php artisan ui black command to install the Black Dashboard 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. Run php artisan migrate --seed to create basic users table

Usage

Register a user or login using [email protected] and secret and start testing the preset (make sure to run the migrations and seeders for these credentials to be available).

Besides the dashboard and the auth pages this preset also has an edit profile page. All the necessary files (controllers, requests, views) 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 above or by registering your own user.

Dashboard

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

Profile edit

You have the option to edit the current logged in user's profile (change name, email and password). To access this page just click the "User profile" link in the left sidebar or by adding /profile in the url.

The App\Http\Controllers\ProfileController handles the update of the user information.

public function update(ProfileRequest $request)
{
    auth()->user()->update($request->all());

    return back()->withStatus(__('Profile successfully updated.'));
}

Also you shouldn't worry about entering wrong data in the inputs when editing the profile, validation rules were added to prevent this (see App\Http\Requests\ProfileRequest). If you try to change the password you will see that other validation rules were added in App\Http\Requests\PasswordRequest. Notice that in this file you have a custom validation rule that can be found in App\Rules\CurrentPasswordCheckRule.

public function rules()
{
    return [
        'old_password' => ['required', 'min:6', new CurrentPasswordCheckRule],
        'password' => ['required', 'min:6', 'confirmed', 'different:old_password'],
        'password_confirmation' => ['required', 'min:6'],
    ];
}

Table of Contents

Versions

HTML LARAVEL
Black Dashboard HTML Black Dashboard Laravel

Demo

Register Login Dashboard
Register Login Dashboard
Profile Page Users Page Tables Page
Profile Page Users Page Tables Page
View More

Documentation

The documentation for the Black Dashboard Laravel is hosted at our website.

File Structure

β”œβ”€β”€β”€app
β”‚   β”œβ”€β”€β”€Http
β”‚   β”‚   β”œβ”€β”€β”€Controllers
β”‚   β”‚   β”‚       HomeController.php
β”‚   β”‚   β”‚       PageController.php
β”‚   β”‚   β”‚       ProfileController.php
β”‚   β”‚   β”‚       UserController.php
β”‚   β”‚   β”‚       
β”‚   β”‚   └───Requests
β”‚   β”‚           PasswordRequest.php
β”‚   β”‚           ProfileRequest.php
β”‚   β”‚           UserRequest.php
β”‚   β”‚           
β”‚   └───Rules
β”‚           CurrentPasswordCheckRule.php
β”‚           
β”œβ”€β”€β”€database
β”‚   └───seeds
β”‚           DatabaseSeeder.php
β”‚           UsersTableSeeder.php
β”‚           
└───resources
    β”œβ”€β”€β”€assets
    β”‚   β”œβ”€β”€β”€css
    β”‚   β”‚       black-dashboard.css
    β”‚   β”‚       black-dashboard.css.map
    β”‚   β”‚       black-dashboard.min.css
    β”‚   β”‚       nucleo-icons.css
    β”‚   β”‚       theme.css
    β”‚   β”‚       
    β”‚   β”œβ”€β”€β”€demo
    β”‚   β”‚       demo.css
    β”‚   β”‚       demo.js
    β”‚   β”‚       
    β”‚   β”œβ”€β”€β”€fonts
    β”‚   β”‚       nucleo.eot
    β”‚   β”‚       nucleo.ttf
    β”‚   β”‚       nucleo.woff
    β”‚   β”‚       nucleo.woff2
    β”‚   β”‚       
    β”‚   β”œβ”€β”€β”€img
    β”‚   β”‚       anime3.png
    β”‚   β”‚       anime6.png
    β”‚   β”‚       apple-icon.png
    β”‚   β”‚       bg5.jpg
    β”‚   β”‚       card-primary.png
    β”‚   β”‚       default-avatar.png
    β”‚   β”‚       emilyz.jpg
    β”‚   β”‚       favicon.png
    β”‚   β”‚       header.jpg
    β”‚   β”‚       img_3115.jpg
    β”‚   β”‚       james.jpg
    β”‚   β”‚       mike.jpg
    β”‚   β”‚       
    β”‚   β”œβ”€β”€β”€js
    β”‚   β”‚   β”‚   black-dashboard.js
    β”‚   β”‚   β”‚   black-dashboard.js.map
    β”‚   β”‚   β”‚   black-dashboard.min.js
    β”‚   β”‚   β”‚   theme.js
    β”‚   β”‚   β”‚   
    β”‚   β”‚   β”œβ”€β”€β”€core
    β”‚   β”‚   β”‚       bootstrap.min.js
    β”‚   β”‚   β”‚       jquery.min.js
    β”‚   β”‚   β”‚       popper.min.js
    β”‚   β”‚   β”‚       
    β”‚   β”‚   └───plugins
    β”‚   β”‚           bootstrap-notify.js
    β”‚   β”‚           chartjs.min.js
    β”‚   β”‚           perfect-scrollbar.jquery.min.js
    β”‚   β”‚           
    β”‚   └───scss
    β”‚       β”‚   black-dashboard.scss
    β”‚       β”‚   
    β”‚       └───black-dashboard
    β”‚           β”œβ”€β”€β”€bootstrap
    β”‚           β”‚   β”‚   _alert.scss
    β”‚           β”‚   β”‚   _badge.scss
    β”‚           β”‚   β”‚   _breadcrumb.scss
    β”‚           β”‚   β”‚   _button-group.scss
    β”‚           β”‚   β”‚   _buttons.scss
    β”‚           β”‚   β”‚   _card.scss
    β”‚           β”‚   β”‚   _carousel.scss
    β”‚           β”‚   β”‚   _close.scss
    β”‚           β”‚   β”‚   _code.scss
    β”‚           β”‚   β”‚   _custom-forms.scss
    β”‚           β”‚   β”‚   _dropdown.scss
    β”‚           β”‚   β”‚   _forms.scss
    β”‚           β”‚   β”‚   _functions.scss
    β”‚           β”‚   β”‚   _grid.scss
    β”‚           β”‚   β”‚   _images.scss
    β”‚           β”‚   β”‚   _input-group.scss
    β”‚           β”‚   β”‚   _jumbotron.scss
    β”‚           β”‚   β”‚   _list-group.scss
    β”‚           β”‚   β”‚   _media.scss
    β”‚           β”‚   β”‚   _mixins.scss
    β”‚           β”‚   β”‚   _modal.scss
    β”‚           β”‚   β”‚   _nav.scss
    β”‚           β”‚   β”‚   _navbar.scss
    β”‚           β”‚   β”‚   _pagination.scss
    β”‚           β”‚   β”‚   _popover.scss
    β”‚           β”‚   β”‚   _print.scss
    β”‚           β”‚   β”‚   _progress.scss
    β”‚           β”‚   β”‚   _reboot.scss
    β”‚           β”‚   β”‚   _root.scss
    β”‚           β”‚   β”‚   _tables.scss
    β”‚           β”‚   β”‚   _tooltip.scss
    β”‚           β”‚   β”‚   _transitions.scss
    β”‚           β”‚   β”‚   _type.scss
    β”‚           β”‚   β”‚   _utilities.scss
    β”‚           β”‚   β”‚   _variables.scss
    β”‚           β”‚   β”‚   
    β”‚           β”‚   β”œβ”€β”€β”€mixins
    β”‚           β”‚   β”‚       _alert.scss
    β”‚           β”‚   β”‚       _background-variant.scss
    β”‚           β”‚   β”‚       _badge.scss
    β”‚           β”‚   β”‚       _border-radius.scss
    β”‚           β”‚   β”‚       _box-shadow.scss
    β”‚           β”‚   β”‚       _breakpoints.scss
    β”‚           β”‚   β”‚       _buttons.scss
    β”‚           β”‚   β”‚       _caret.scss
    β”‚           β”‚   β”‚       _clearfix.scss
    β”‚           β”‚   β”‚       _float.scss
    β”‚           β”‚   β”‚       _forms.scss
    β”‚           β”‚   β”‚       _gradients.scss
    β”‚           β”‚   β”‚       _grid-framework.scss
    β”‚           β”‚   β”‚       _grid.scss
    β”‚           β”‚   β”‚       _hover.scss
    β”‚           β”‚   β”‚       _image.scss
    β”‚           β”‚   β”‚       _list-group.scss
    β”‚           β”‚   β”‚       _lists.scss
    β”‚           β”‚   β”‚       _nav-divider.scss
    β”‚           β”‚   β”‚       _pagination.scss
    β”‚           β”‚   β”‚       _reset-text.scss
    β”‚           β”‚   β”‚       _resize.scss
    β”‚           β”‚   β”‚       _screen-reader.scss
    β”‚           β”‚   β”‚       _size.scss
    β”‚           β”‚   β”‚       _table-row.scss
    β”‚           β”‚   β”‚       _text-emphasis.scss
    β”‚           β”‚   β”‚       _text-hide.scss
    β”‚           β”‚   β”‚       _text-truncate.scss
    β”‚           β”‚   β”‚       _transition.scss
    β”‚           β”‚   β”‚       _visibility.scss
    β”‚           β”‚   β”‚       
    β”‚           β”‚   └───utilities
    β”‚           β”‚           _align.scss
    β”‚           β”‚           _background.scss
    β”‚           β”‚           _borders.scss
    β”‚           β”‚           _clearfix.scss
    β”‚           β”‚           _display.scss
    β”‚           β”‚           _embed.scss
    β”‚           β”‚           _flex.scss
    β”‚           β”‚           _float.scss
    β”‚           β”‚           _position.scss
    β”‚           β”‚           _screenreaders.scss
    β”‚           β”‚           _shadows.scss
    β”‚           β”‚           _sizing.scss
    β”‚           β”‚           _spacing.scss
    β”‚           β”‚           _text.scss
    β”‚           β”‚           _visibility.scss
    β”‚           β”‚           
    β”‚           β”œβ”€β”€β”€custom
    β”‚           β”‚   β”‚   _alerts.scss
    β”‚           β”‚   β”‚   _buttons.scss
    β”‚           β”‚   β”‚   _card.scss
    β”‚           β”‚   β”‚   _checkboxes-radio.scss
    β”‚           β”‚   β”‚   _dropdown.scss
    β”‚           β”‚   β”‚   _fixed-plugin.scss
    β”‚           β”‚   β”‚   _footer.scss
    β”‚           β”‚   β”‚   _forms.scss
    β”‚           β”‚   β”‚   _functions.scss
    β”‚           β”‚   β”‚   _images.scss
    β”‚           β”‚   β”‚   _input-group.scss
    β”‚           β”‚   β”‚   _misc.scss
    β”‚           β”‚   β”‚   _mixins.scss
    β”‚           β”‚   β”‚   _modal.scss
    β”‚           β”‚   β”‚   _navbar.scss
    β”‚           β”‚   β”‚   _rtl.scss
    β”‚           β”‚   β”‚   _sidebar-and-main-panel.scss
    β”‚           β”‚   β”‚   _tables.scss
    β”‚           β”‚   β”‚   _type.scss
    β”‚           β”‚   β”‚   _utilities.scss
    β”‚           β”‚   β”‚   _variables.scss
    β”‚           β”‚   β”‚   
    β”‚           β”‚   β”œβ”€β”€β”€cards
    β”‚           β”‚   β”‚       _card-chart.scss
    β”‚           β”‚   β”‚       _card-map.scss
    β”‚           β”‚   β”‚       _card-plain.scss
    β”‚           β”‚   β”‚       _card-task.scss
    β”‚           β”‚   β”‚       _card-user.scss
    β”‚           β”‚   β”‚       
    β”‚           β”‚   β”œβ”€β”€β”€mixins
    β”‚           β”‚   β”‚       opacity.scss
    β”‚           β”‚   β”‚       _alert.scss
    β”‚           β”‚   β”‚       _background-variant.scss
    β”‚           β”‚   β”‚       _badges.scss
    β”‚           β”‚   β”‚       _buttons.scss
    β”‚           β”‚   β”‚       _dropdown.scss
    β”‚           β”‚   β”‚       _forms.scss
    β”‚           β”‚   β”‚       _icon.scss
    β”‚           β”‚   β”‚       _inputs.scss
    β”‚           β”‚   β”‚       _modals.scss
    β”‚           β”‚   β”‚       _page-header.scss
    β”‚           β”‚   β”‚       _popovers.scss
    β”‚           β”‚   β”‚       _vendor-prefixes.scss
    β”‚           β”‚   β”‚       _wizard.scss
    β”‚           β”‚   β”‚       
    β”‚           β”‚   β”œβ”€β”€β”€utilities
    β”‚           β”‚   β”‚       _backgrounds.scss
    β”‚           β”‚   β”‚       _floating.scss
    β”‚           β”‚   β”‚       _helper.scss
    β”‚           β”‚   β”‚       _position.scss
    β”‚           β”‚   β”‚       _shadows.scss
    β”‚           β”‚   β”‚       _sizing.scss
    β”‚           β”‚   β”‚       _spacing.scss
    β”‚           β”‚   β”‚       _text.scss
    β”‚           β”‚   β”‚       _transform.scss
    β”‚           β”‚   β”‚       
    β”‚           β”‚   └───vendor
    β”‚           β”‚           _plugin-animate-bootstrap-notify.scss
    β”‚           β”‚           _plugin-perfect-scrollbar.scss
    β”‚           β”‚           
    β”‚           └───plugins
    β”‚                   _plugin-perfect-scrollbar.scss
    β”‚                   
    └───views
        β”‚   dashboard.blade.php
        β”‚   welcome.blade.php
        β”‚   
        β”œβ”€β”€β”€alerts
        β”‚       feedback.blade.php
        β”‚       success.blade.php
        β”‚       
        β”œβ”€β”€β”€auth
        β”‚   β”‚   login.blade.php
        β”‚   β”‚   register.blade.php
        β”‚   β”‚   verify.blade.php
        β”‚   β”‚   
        β”‚   └───passwords
        β”‚           email.blade.php
        β”‚           reset.blade.php
        β”‚           
        β”œβ”€β”€β”€layouts
        β”‚       β”‚   app.blade.php
        β”‚       β”‚   footer.blade.php
        β”‚       β”‚   
        β”‚       └───navbars
        β”‚           β”‚   navbar.blade.php
        β”‚           β”‚   sidebar.blade.php
        β”‚           β”‚   
        β”‚           └───navs
        β”‚                   auth.blade.php
        β”‚                   guest.blade.php
        β”‚           
        β”œβ”€β”€β”€pages
        β”‚       icons.blade.php
        β”‚       language.blade.php
        β”‚       map.blade.php
        β”‚       maps.blade.php
        β”‚       notifications.blade.php
        β”‚       rtl.blade.php
        β”‚       tables.blade.php
        β”‚       table_list.blade.php
        β”‚       typography.blade.php
        β”‚       upgrade.blade.php
        β”‚       
        β”œβ”€β”€β”€profile
        β”‚       edit.blade.php
        β”‚       
        └───users
                index.blade.php

Browser Support

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

Resources

HTML LARAVEL
Black Dashboard HTML Black Dashboard Laravel

Change log

Please see the changelog for more information on what has changed recently.

Credits

Reporting Issues

We use GitHub Issues as the official bug tracker for the Black Dashboard Laravel. 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 Black Dashboard Laravel. Check the CHANGELOG from your dashboard on our website.
  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

Useful Links

Social Media

Creative Tim:

Twitter: https://twitter.com/CreativeTim?ref=bdl-readme

Facebook: https://www.facebook.com/CreativeTim?ref=bdl-readme

Dribbble: https://dribbble.com/creativetim?ref=bdl-readme

Instagram: https://www.instagram.com/CreativeTimOfficial?ref=bdl-readme

Updivision:

Twitter: https://twitter.com/updivision?ref=bdl-readme

Facebook: https://www.facebook.com/updivision?ref=bdl-readme

Linkedin: https://www.linkedin.com/company/updivision?ref=bdl-readme

Updivision Blog: https://updivision.com/blog/?ref=bdl-readme

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].