8000 Readme update · mdbootstrap/adminlte-laravel@a642456 · GitHub
[go: up one dir, main page]

Skip to content

Commit a642456

Browse files
committed
Readme update
1 parent 511982a commit a642456

File tree

1 file changed

+6
-102
lines changed

1 file changed

+6
-102
lines changed

README.md

Lines changed: 6 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ If you are looking for the Laravel 4 version, use 0.1.5 version/tag and see [OLD
2323
composer require "acacha/admin-lte-template-laravel"
2424
```
2525

26+
Finally publish files with:
27+
28+
```php
29+
php artisan vendor:publish --tag=adminlte --force
30+
```
31+
2632
# Requirements
2733

2834
This packages use (no need to install):
@@ -71,108 +77,6 @@ Please be sure to check you environment.
7177

7278
This package works smoothly with Laravel 5.x with 6.x version
7379

74-
## Laravel 5.4
75-
76-
Use 4.1.23 version of this package!
77-
78-
### Laravel 5.4 manual installation
79-
80-
Follow the typical Laravel package installation steps:
81-
82-
<pre>
83-
laravel new laravel-with-admin-lte
84-
cd laravel-with-admin-lte
85-
</pre>
86-
87-
Add admin-lte Laravel package with:
88-
89-
<pre>
90-
composer require "acacha/admin-lte-template-laravel:4.*"
91-
</pre>
92-
93-
To register the Service Provider edit **config/app.php** file and add to providers array:
94-
95-
```php
96-
/*
97-
* Acacha AdminLTE template provider
98-
*/
99-
Acacha\AdminLTETemplateLaravel\Providers\AdminLTETemplateServiceProvider::class,
100-
```
101-
102-
To Register Alias edit **config/app.php** file and add to alias array:
103-
104-
```php
105-
/*
106-
* Acacha AdminLTE template alias
107-
*/
108-
'AdminLTE' => Acacha\AdminLTETemplateLaravel\Facades\AdminLTE::class,
109-
```
110-
111-
Publish files with:
112-
113-
```php
114-
php artisan vendor:publish --tag=adminlte --force
115-
```
116-
117-
Use force to overwrite Laravel Scaffolding packages. That's all! Open the Laravel project in your browser or homestead machine and enjoy!
118-
119-
120-
## Laravel 5.3
121-
122-
Use branch 3.x for Laravel 5.3 version.
123-
124-
## Laravel 5.2
125-
126-
Also you can use for previous version of Laravel (5.2) :
127-
128-
```
129-
composer global require "acacha/adminlte-laravel-installer=~2.0"
130-
laravel new --5.2 laravel-with-admin-lte
131-
```
132-
133-
## Laravel 5.1 notes
134-
135-
By default Laravel 5.1 does not include default auth routes. Versions > 1.0 < 2.0 of this package add the necessary routes for you
136-
137-
See [old README file](OLD-README.md) file for notes of which routes are registered.
138-
139-
### Installation
140-
141-
First install Laravel (http://laravel.com/docs/5.0/installation) and then Create a new Laravel project:
142-
143-
<pre>
144-
laravel new laravel-with-admin-lte
145-
cd laravel-with-admin-lte
146-
</pre>
147-
148-
Add admin-lte Laravel package with:
149-
150-
<pre>
151-
composer require "acacha/admin-lte-template-laravel:1.*"
152-
</pre>
153-
154-
Register ServiceProvider editing **config/app.php** file and adding to providers array:
155-
156-
<pre>
157-
// AdminLTE template provider
158-
Acacha\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider::class,
159-
</pre>
160-
161-
Publish files with:
162-
163-
<pre>
164-
php artisan vendor:publish --force --provider="Acacha\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider"
165-
</pre>
166-
167-
Use force to overwrite Laravel Scaffolding packages. That's all! Open the Laravel project in your browser or homestead machine and enjoy!
168-
169-
Note: use the following for Laravel <5.1 versions:
170-
171-
<pre>
172-
// AdminLTE template provider
173-
'Acacha\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider',
174-
</pre>
175-
17680
## Laravel Routes
17781

17882
This package installs Laravel routes that you will not find them at routes.php file. The routes installed by package would be find at file:

0 commit comments

Comments
 (0)
0