rayasabari / laravuetonic

Metronic Laravel starter kits build of Bootstrap 4 with user authentication using Laravel Breeze and Vue integration

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravuetonic

Laravuetonic is a starter kits build of Laravel with user authentication and packed with responsive premium template from Metronic Themes by Keenthemes built on Bootstrap 4 and integrated with Vue.js

Features

  • Metronic Login and Dashboard
  • Layout Configuration
  • Menu Generator
  • Email Registration
  • Email Verification
  • Password Recovery
  • Password Confirmation

Note:

Currently using blade templating for login and dashboard layout, but you can use vue component into the dashboard content

Selected Theme

Package

  • Laravel 8.x
  • Laravel Breeze
  • Vue 2.x
  • Metronic 7.x
  • Bootstrap 4

Requirement

  • PHP 7.3.x +
  • MySQL Database (can be changed)
  • Composer 2.0.x +
  • Node.js 12.16.x +

Installation

  1. Run the following command

    git clone https://github.com/rayasabari/laravuetonic.git laravuetonic
  2. Create a MySQL database project

  3. Move to root project directory

    cd laravuetonic
  4. Copy .env file

    cp .env.example .env
  5. Configure your .env file. Make sure your database name and smtp mailer set up correctly

    ...
    
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=yourdatabasename
    DB_USERNAME=root
    DB_PASSWORD=
    
    ...

    Use mailtrap.io to safe email testing in development

    ...
    
    MAIL_MAILER=smtp
    MAIL_HOST=smtp.mailtrap.io
    MAIL_PORT=2525
    MAIL_USERNAME=yourusername
    MAIL_PASSWORD=yourpassword
    MAIL_ENCRYPTION=null
    MAIL_FROM_ADDRESS=noreply@example.com
    MAIL_FROM_NAME="${APP_NAME}"
    
    ...
  6. From root project directory, run the following commands

    composer update
    php artisan key:generate
    php artisan artisan migrate
    npm install
    npm run dev
    php artisan serve
  7. Run in your browser

    http://127.0.0.1:8000
  8. Register account and enjoy!

Layout Configuration

Metronic theme has a large variety of layout styles and settings. You can visually test them all in layout builder section. It also implemented this comprehensive layout configuration.

Configuration file config/layout.php has all the respective sections and their styling and positioning values.

By editing config values in file you will be able to set the theme layout to your needs by given possibility.

In case it doesn't affect the view, just run php artisan config:cache

Menu Generator

Theme menu elements are rich of features including link styling, icons, href properties and so on. Writing menu nodes by hand might get a little too overwhelming and messy. Hence, we have implemented an automatic menu generator which is configured from the menu config files and rendered in the menu section for you.

Menu config files file config/menu_aside.php and config/menu_header.php by default hold dummy data.

Conifg values and descriptions

Key Description Available values
title link title string
page link url slug type i.e /my-blog
new-tab defines if link opens in new tab true, false
root defines if link is at root level true, false
section section heading string
icon menu icon Icon file link or class. I.e. SVG Icons or Flaticon
bullet defines menu/submenu bullet style line, dot
submenu submenu node array

Additional Info

To assign the pages for verified user only, just add 'verified' middleware on route in routes/web.php Example:

Route::group(['middleware' => ['auth','verified']], function () {
    Route::get('/dashboard', 'PagesController@index')->name('dashboard');
});

License

You must have a valid license purchased only from Themeforest in order to legally use the theme for your project. Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes

Happy coding with Metronic! :)

About

Metronic Laravel starter kits build of Bootstrap 4 with user authentication using Laravel Breeze and Vue integration


Languages

Language:TypeScript 56.8%Language:Blade 25.9%Language:PHP 16.1%Language:HTML 0.6%Language:Vue 0.6%Language:Shell 0.0%