Home

Awesome

<p style="text-align=center;"> <img src="docs/screens/Hello.png"> </p> <p align="center"> <img alt="GitHub version" src="https://img.shields.io/github/v/release/getspooky/laravelDash?style=for-the-badge"> <img alt="GitHub" src="https://img.shields.io/github/license/getspooky/laraveldash?style=for-the-badge"> <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/getspooky/laravelDash?style=for-the-badge"> <img alt="GitHub issues" src="https://img.shields.io/github/issues/getspooky/laravelDash?style=for-the-badge"> <img alt="GitHub Download" src="https://img.shields.io/packagist/dt/yal/laraveldash?style=for-the-badge"> </p> <div align="center"> <sub>Created by <a href="https://github.com/getspooky">getspooky</a> and maintained with ❤️ by an amazing <a href="https://github.com/getspooky/laravelDash/graphs/contributors">team of developers</a>.</sub> </div>

Table of Contents

Introduction

It's never been easier to build and customize admin panels. Yah! yaldash also called laravelDash is a beautifully designed administration panel for Laravel.

Features

<dl> <dt>Dashboard Template</dt> <dd>The design doesn’t just look good though, they are also fully mobile responsive to accommodate users that are accessing your app, software, or website on their smartphones and tablets, no matter what size screen they have.</dd> <dt>Settings Manager</dt> <dd>The Settings section allows you to update your personal information. This can be anything from your First Name , Email , Country , Password , Address or Image.</dd> <dt>Vue2Editor Integration</dt> <dd>Your editor for rich text editing built with Vue.js and Quill.js, Simple setup so you can get started quickly , Offers the options you need for more complex scenarios</dd> <dt>Cross platform and browser support</dt> <dd>Build HTML5 web apps for desktops, tablets and smartphones with touch screen interface which work in all major browsers.</dd> <dt>Stripe Checkout</dt> <dd>Smart payment page that works seamlessly across devices and is designed to increase your conversion. Payment methods: credit and debit cards, Apple Pay</dd> </dl>

Documentation

For installation instructions, in-depth usage and deployment details, please take a look at the official documentation.

Requirements

yaldash has a few requirements you should be aware of before installing:

Browser Support

yaldash supports reasonably recent versions of the following browsers:

Usage

🚨 The official guide assumes intermediate level knowledge of PHP.

Minute 1: Create the Laravel application

we assume that you have been able to set up your development environment. There are two ways to install Laravel project

I will be using via composer to create new project

composer create-project --prefer-dist laravel/laravel blog

Minute 2: Configuration

Firstly, make sure to create a new database and add your database credentials to your .env file:

APP_URL=http://localhost
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

Minute 3: Install and Configure yaldash

yaldash is super easy to install. After creating your new Laravel application you can include the yaldash package with the following command:

composer require yal/laraveldash

yaldash will automatically register its service provider if you are using Laravel >=5.5. If you are using yaldash with Laravel 5.3 or 5.4, add yaldash’s service provider in your application’s config/app.php file:

/*
 * yaldash Service Provider
 */
yal\laraveldash\Providers\DashboardServiceProvider::class,

Next, you need to publish the laravelDash configuration file:

php artisan vendor:publish --provider="yal\laraveldash\Providers\DashboardServiceProvider" --tag="config"

Next, you need to publish the laravelDash assets:

php artisan vendor:publish --provider="yal\laraveldash\Providers\DashboardServiceProvider" --tag="laravelDash-assets"

Minute 4: Running Migrations and Defining Relationships

Generated migrations are regular Laravel migrations, Run the migrations with:

php artisan migrate

Or run the LaravelDash command, that provides you with what you need to start using LaravelDash

php artisan laraveldash:install

Database tables are often related to one another. For example, a blog post may have many comments, or an order could be related to the user who placed it. Eloquent makes managing and working with these relationships easy. So, go to App\User.php and add UserRelation

<?php

namespace App;

use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use yal\laraveldash\Traits\UserRelation;

class User extends Authenticatable
{
    use Notifiable,UserRelation;

}

Minute 5:Yah! You’re on yaldash !

To see it, you need to start a web server on your development machine. You can do this by running the following command:php artisan serve and then head to http://localhost:8000/laravel-dash

you can customize to the route you want in the config file (config/laraveldash.php)

Contribute

Whether you're helping us fix bugs, improve the docs, or spread the word, we'd love to have you as part of the yaldash community! 💪💜 See CONTRIBUTING.md for more information on what we're looking for and how to get started.

Thanks goes to these wonderful people (emoji key):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore --> <table><tr><td align="center"><a href="https://github.com/getspooky"><img src="https://avatars1.githubusercontent.com/u/37160072?s=460&u=6578a0a9d158c7ecb0afa5e8c9ec13194e736b3e&v=4" width="100px;" alt="Yasser A.Idrissi"/><br /><sub><b>Yasser A.Idrissi</b></sub></a><br /><a href="https://github.com/getspooky/laravelDash" title="Code">💻</a> <a href="" title="Documentation">📖</a> <a href="#ideas" title="Ideas, Planning, & Feedback">🤔</a> <a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a><td align="center"><a href="https://github.com/oliuz"><img src="https://avatars0.githubusercontent.com/u/5214293?s=460&u=bf2f7042aa5aff6d9e598d2bdc5706171a46541e&v=4" width="100px;" alt="Jose Rosado "/><br /><sub><b>Jose Rosado</b></sub></a><br /><a href="https://github.com/getspooky/laravelDash" title="Code">💻</a> <a href="" title="Documentation">📖</a> <a href="#ideas" title="Ideas, Planning, & Feedback">🤔</a> <a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a></td><td align="center"><a href="https://github.com/AshrafBasry"><img src="https://avatars3.githubusercontent.com/u/20860869?s=460&u=5ed9804c468b6312194b4d18017a7a9cb4361194&v=4" width="100px;" alt="أشرف بصرى "/><br /><sub><b>أشرف بصرى</b></sub></a><br /><a href="https://github.com/getspooky/laravelDash" title="Code">💻</a> <a href="" title="Documentation">📖</a><a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a></td><td align="center"><a href="https://github.com/akiyamaSM"><img src="https://avatars3.githubusercontent.com/u/12276076?s=460&u=64036817c1b2c2cd7d3b82ff69245322597f742a&v=4" width="100px;" alt=" Inani El Houssain"/><br /><sub><b>Inani El Houssain</b></sub></a><br /><a href="https://github.com/getspooky/laravelDash" title="Code">💻</a> <a href="" title="Documentation">📖</a><a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a></td><td align="center"><a href="https://github.com/oliuz"><img src="https://avatars2.githubusercontent.com/u/6394329?s=460&u=bdad77a5398031d30923d71fcc2f5afa80459ab1&v=4" width="100px;" alt="Michael Millis"/><br /><sub><b>Michael Millis</b></sub></a><br /><a href="https://github.com/getspooky/laravelDash" title="Code">💻</a> <a href="" title="Documentation">📖</a><a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a></td><td align="center"><a href="https://github.com/u98"><img src="https://avatars3.githubusercontent.com/u/29244975?s=460&v=4" width="100px;" alt="Uchinka"/><br /><sub><b>Uchinka</b></sub></a><br /><a href="https://github.com/getspooky/laravelDash" title="Code">💻</a> <a href="" title="Documentation">📖</a><a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a></td><td align="center"><a href="https://github.com/nikoandpiko"><img src="https://avatars2.githubusercontent.com/u/54879724?s=460&u=b0d85f45a7bab8a8ec522838e8110951139cfb7d&v=4" width="100px;" alt="nikoandpiko "/><br /><sub><b>ローマ ニコラス</b></sub></a><br /><a href="https://github.com/nikoandpiko" title="Code">💻</a> <a href="" title="Documentation">📖</a><a href="#review" title="Reviewed Pull Requests">👀</a> <a href="" title="Tests">⚠️</a></td></tr></table> <!-- ALL-CONTRIBUTORS-LIST:END -->

Security Vulnerabilities

If you discover a security vulnerability within LaravelDash, please send an e-mail to Yasser Ameur El Idrissi via getspookydev@gmail.com . All security vulnerabilities will be promptly addressed.

Changelog

Please see CHANGELOG for more information what has changed recently.

License

The yaldash Library is open-source software licensed under the MIT license.

Screenshot

<img src="./docs/screens/Dashboard-Interface.jpg" alt="Dashboard Interface"> <img src="./docs/screens/Checkout-Interface.jpg" alt="Checkout Interface"> <img src="./docs/screens/CRUD-Interface.png" alt="CRUD Interface"> <img src="./docs/screens/Post-Interface.jpg" align="right" alt="Post Interface"> <div align="center"> Happy Coding ❤️ </div>