Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/getspooky/yaldash
๐ป It's never been easier to build and customize admin panels. Yah! yaldash is a beautifully designed administration panel for Laravel.
https://github.com/getspooky/yaldash
admin-dashboard crud hackertoberfest hacktoberfest-accepted laravel laravel-applications offers-additonal-features panel-management payment php vuejs
Last synced: about 1 month ago
JSON representation
๐ป It's never been easier to build and customize admin panels. Yah! yaldash is a beautifully designed administration panel for Laravel.
- Host: GitHub
- URL: https://github.com/getspooky/yaldash
- Owner: getspooky
- License: mit
- Archived: true
- Created: 2019-04-12T19:32:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T11:25:55.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T18:17:46.657Z (about 1 month ago)
- Topics: admin-dashboard, crud, hackertoberfest, hacktoberfest-accepted, laravel, laravel-applications, offers-additonal-features, panel-management, payment, php, vuejs
- Language: PHP
- Homepage:
- Size: 8.88 MB
- Stars: 401
- Watchers: 22
- Forks: 66
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
- php-awesome - yaldash - Laravel ๅๅฐ็ฎก็ (้กน็ฎๆกๆถ)
README
## Table of Contents
- [Introduction](#Introduction)
- [Features](#Features)
- [Documentation](#Documentation)
- [Requirements](#Requirements)
- [Browser Support](#Browser-Support)
- [Usage](#Usage)
- [Contribute](#Contribute)
- [Security Vulnerabilities](#Security-Vulnerabilities)
- [Changelog](#changelog)
- [License](#license)
- [Screenshot](#Screenshot)## 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
- Dashboard Template
- 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.
- Settings Manager
- The Settings section allows you to update your personal information. This can be anything from your First Name , Email , Country , Password , Address or Image.
- Vue2Editor Integration
- 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
- Cross platform and browser support
- Build HTML5 web apps for desktops, tablets and smartphones with touch screen interface which work in all major browsers.
- Stripe Checkout
- Smart payment page that works seamlessly across devices and is designed to increase your conversion.
Payment methods: credit and debit cards, Apple Pay
## Documentation
For installation instructions, in-depth usage and deployment details, please take a look at the official [documentation](https://getspooky.github.io/yaldash/#/).
## Requirements
yaldash has a few requirements you should be aware of before installing:
- Composer
- Laravel Framework 5.4+
- Laravel Mix
- Node.js & NPM
## Browser Support
yaldash supports reasonably recent versions of the following browsers:
- Google Chrome
- Microsoft Edge
- Firefox
- Opera
- Safari
## 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
- Via Laravel Installer
- Via Composer Create-Project
I will be using via composer to create new project
```sh
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:
```sh
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:
```sh
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:
```php
/*
* yaldash Service Provider
*/
yal\laraveldash\Providers\DashboardServiceProvider::class,
```
Next, you need to publish the laravelDash configuration file:
```sh
php artisan vendor:publish --provider="yal\laraveldash\Providers\DashboardServiceProvider" --tag="config"
```
Next, you need to publish the laravelDash assets:
```sh
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:
```sh
php artisan migrate
```
Or run the LaravelDash command, that provides you with what you need to start using LaravelDash
```sh
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
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](https://allcontributors.org/docs/en/emoji-key)):
Yasser A.Idrissi
๐ป ๐ ๐ค ๐ โ ๏ธ
Jose Rosado
๐ป ๐ ๐ค ๐ โ ๏ธ
ุฃุดุฑู ุจุตุฑู
๐ป ๐๐ โ ๏ธ
Inani El Houssain
๐ป ๐๐ โ ๏ธ
Michael Millis
๐ป ๐๐ โ ๏ธ
Uchinka
๐ป ๐๐ โ ๏ธ
ใญใผใใใใณใฉใน
๐ป ๐๐ โ ๏ธ
## Security Vulnerabilities
If you discover a security vulnerability within LaravelDash, please send an e-mail to Yasser Ameur El Idrissi via `[email protected]` . All security vulnerabilities will be promptly addressed.
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## License
The yaldash Library is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).
## Screenshot
Happy Coding โค๏ธ