Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rehmatworks/stisla-laravel
A Laravel implementation (with user CRUD) of the awesome Stisla Bootstrap admin panel.
https://github.com/rehmatworks/stisla-laravel
bootstrap bootstrap-4 laravel laravel-admin laravel-admin-panel php php7 stisla vue vuejs
Last synced: about 1 month ago
JSON representation
A Laravel implementation (with user CRUD) of the awesome Stisla Bootstrap admin panel.
- Host: GitHub
- URL: https://github.com/rehmatworks/stisla-laravel
- Owner: rehmatworks
- Archived: true
- Created: 2019-04-13T19:40:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T02:12:15.000Z (about 4 years ago)
- Last Synced: 2024-09-24T11:02:37.981Z (about 1 month ago)
- Topics: bootstrap, bootstrap-4, laravel, laravel-admin, laravel-admin-panel, php, php7, stisla, vue, vuejs
- Language: PHP
- Homepage: https://stisla.rehmat.works
- Size: 17.3 MB
- Stars: 108
- Watchers: 5
- Forks: 65
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stisla Laravel
Stisla is the most-awesome admin panel I've seen so far. As I love this template very much, I have implemented Stisla in a fresh Laravel 5.8 app. Simply clone this repo and start building your next Laravel project on top of the awesome Stisla. This project makes a very little and basic use of VueJS and compiled JS is already bundled with the project. If you want to make it more dynamic, you can update the Vue components or add your own.## Installation
Clone the repo:
```shell
git clone https://github.com/rehmatworks/stisla-laravel.git
```Install composer packages:
```shell
composer update
```Copy and rename .env.example to .env, update the environmental variables and set an app key:
```shell
php artisan key:generate
```After that, run all migrations and seed the database:
```shell
php artisan migrate
```
```shell
php artisan db:seed
```Or if your database is fresh and you haven't done any work yet, then it's safe to call the commands in a single line:
```shell
php artisan migrate:refresh --seed
```Note that seeding the database is compulsory as it will create the necessary roles and permissions for the user CRUD provided by the project.
Visit
http://yoursite.com/loginto sign in using below credentials:### Demo
URL: https://stisla.rehmat.works#### Demo Admin Login
* Email: [email protected]
* Password: 1234#### Demo Editor Login
* Email: [email protected]
* Password: 1234#### Demo User Login
* Email: [email protected]
* Password: 1234P.S.: Password modification and user deletion is disabled in demo mode.
This project comes with a user CRUD and makes the use of [Spatie Roles and Permissions](https://github.com/spatie/laravel-permission) at a very basic level in order to give restricted access to the three roles provided above. You can move forward with the same logic to achieve more complex goals.
### Credits:
* [Laravel](https://github.com/laravel/laravel)
* [Stisla Bootstrap 4 Admin Panel Template](https://github.com/stisla/stisla)
* [Spatie Laravel Roles and Permissions](https://github.com/spatie/laravel-permission)
* [vue-ios-alertview](https://github.com/Wyntau/vue-ios-alertview)### Contribution:
Contribution is welcomed and highly appreciated. Fork the repo, make your updates and initiate a pull request. I'll approve all pull requests as long as they are constructive and follow the Laravel standard practices.