-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
116 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,13 @@ | |
|
||
This package provides an easily configurable admin panel for Laravel applications with a CRUD system, UI and more. | ||
|
||
## Screen shot | ||
- This is a custom CRUD with few lines of code : | ||
![dashboard of panel](https://raw.githubusercontent.com/serverfireteam/panel/master/public/img/serverfire-panel-dashboard.jpg) | ||
![Edit Pages](https://raw.githubusercontent.com/serverfireteam/panel/master/public/img/serverfire-panel-crud-edit.jpg) | ||
## Table of Contents | ||
* [Main features](#main-features) | ||
* [Screen shots](#screen-shot) | ||
* [Document](#document) | ||
* [Installation](#Installation) | ||
|
||
|
||
|
||
## Main features | ||
|
||
|
@@ -30,12 +33,53 @@ This package provides an easily configurable admin panel for Laravel application | |
- ** RTL support ** | ||
|
||
|
||
## Screen shot | ||
- This is a custom CRUD with few lines of code : | ||
![dashboard of panel](https://raw.githubusercontent.com/serverfireteam/panel/master/public/img/serverfire-panel-dashboard.jpg) | ||
![Edit Pages](https://raw.githubusercontent.com/serverfireteam/panel/master/public/img/serverfire-panel-crud-edit.jpg) | ||
|
||
|
||
|
||
## Document | ||
[Read the wiki here](https://github.com/serverfireteam/panel/wiki) | ||
|
||
|
||
## Installation | ||
First you need to create a laravel 5.8 project. | ||
|
||
Add LaravelPanel with runing this code in CMD | ||
|
||
composer require serverfireteam/panel | ||
|
||
Or Add the package to require section of composer And run the composer update command, the package and its dependencies will be installed. | ||
|
||
{ | ||
"require": { | ||
"serverfireteam/panel": "1.9.*" | ||
}, | ||
} | ||
|
||
|
||
|
||
Add the ServiceProvider of the package to the list of providers in the config/app.php file | ||
|
||
'providers' => array( | ||
Serverfireteam\Panel\PanelServiceProvider::class | ||
) | ||
|
||
Run the following command in order to publish configs, views and assets. | ||
|
||
php artisan panel:install | ||
|
||
Go to your domain.com/panel and you can login with the following username and password : | ||
|
||
username: [email protected] | ||
password: 12345 | ||
|
||
|
||
[for more details read the wiki here](https://github.com/serverfireteam/panel/wiki) | ||
|
||
|
||
|
||
Good news! We're currently available for remote and on-site consulting for small, large and enterprise teams. Please contact [email protected] with your needs and let's work together! | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
namespace Serverfireteam\Panel; | ||
|
||
class serverfireteam_panel | ||
{ | ||
public static function getname() { | ||
return "Serverfireteam Panel"; | ||
} | ||
} |