laravel-frontend-presets / Argon

Licence: mit
Argon Frontend Preset For Laravel Framework 8.x and Up

Projects that are alternatives of or similar to Argon

Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (+20%)
Mutual labels:  laravel, frontend
Laravel6 Frontend Boilerplate
A Vue.js Frontend starter project kit template/boilerplate with Laravel 6 Backend API support.
Stars: ✭ 26 (-84.24%)
Mutual labels:  laravel, frontend
Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+1622.42%)
Mutual labels:  laravel, frontend
Laravel Vuetify Spa
Laravel-Vue SPA starter project template with Vuetify frontend.
Stars: ✭ 73 (-55.76%)
Mutual labels:  laravel, frontend
Osu Web
the browser-facing portion of osu!
Stars: ✭ 610 (+269.7%)
Mutual labels:  laravel, frontend
Material Dashboard
Material Frontend Preset For Laravel Framework 8.x and Up
Stars: ✭ 152 (-7.88%)
Mutual labels:  laravel, frontend
Visitor
a laravel package to work with visitors and retrieve their informations
Stars: ✭ 162 (-1.82%)
Mutual labels:  laravel
Laravel Ecommerce
Laravel open source e-commerce system.
Stars: ✭ 163 (-1.21%)
Mutual labels:  laravel
Hyperdom
A fast, feature rich and simple framework for building dynamic browser applications.
Stars: ✭ 161 (-2.42%)
Mutual labels:  frontend
Laravel Fakeid
Automatic model ID obfuscation in routes for Laravel
Stars: ✭ 161 (-2.42%)
Mutual labels:  laravel
Laraplans
SaaS style recurring plans for Laravel.
Stars: ✭ 163 (-1.21%)
Mutual labels:  laravel
Fe Interview
宇宙最强的前端面试指南 (https://lucifer.ren/fe-interview)
Stars: ✭ 2,284 (+1284.24%)
Mutual labels:  frontend
Learning Pwa
📱some samples and blogs about how to start with your first PWA
Stars: ✭ 162 (-1.82%)
Mutual labels:  frontend
Laravel Mix Preload
Add preload and prefetch links based your Mix manifest
Stars: ✭ 162 (-1.82%)
Mutual labels:  laravel
Laravel Security Checker
Added Laravel functionality to Enlightn Security Checker. Adds a command to check for, and optionally emails you, vulnerabilities when they affect you.
Stars: ✭ 163 (-1.21%)
Mutual labels:  laravel
Lock Laravel
This package is a Laravel 5 driver for Lock
Stars: ✭ 161 (-2.42%)
Mutual labels:  laravel
Laravel Location
A simple Laravel Package to sort Countries, States and Cities
Stars: ✭ 162 (-1.82%)
Mutual labels:  laravel
Envoy Deployscript
Laravel Envoy Deployment Script
Stars: ✭ 160 (-3.03%)
Mutual labels:  laravel
Devmap
Карта развития веб-разработчика
Stars: ✭ 2,043 (+1138.18%)
Mutual labels:  frontend
Meli
Platform for deploying static sites and frontend applications easily. Automatic SSL, deploy previews, reverse proxy, and more.
Stars: ✭ 2,125 (+1187.88%)
Mutual labels:  frontend

Argon Frontend Preset For Laravel Framework 8.x and Up

version license GitHub issues open GitHub issues closed

Current version: Argon v1.0.10. More info at https://www.creative-tim.com/product/argon-dashboard-laravel.

Product Image

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/8.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/argon. No need to register the service provider. Laravel 8.x & up can auto detect the package.
  4. Run php artisan ui argon 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 argon-master folder in presets (created in step 2) and rename it to argon
  4. Open composer.json file
  5. Add "LaravelFrontendPresets\\ArgonPreset\\": "presets/argon/src" to autoload/psr-4 and to autoload-dev/psr-4
  6. Add LaravelFrontendPresets\ArgonPreset\ArgonPresetServiceProvider::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 argon 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. 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'],
    ];
}

Documentation

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

Browser Support

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

Change log

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

Reporting Issues

We use GitHub Issues as the official bug tracker for the Material 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 Material 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.

Useful Links

Social Media

Creative Tim:

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

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

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

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

Updivision:

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

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

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

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

Credits

License

MIT License.

Screen shots

Argon Login

Argon Dashboard

Argon Users

Argon Profile

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].