Skip to content

Commit

Permalink
Add Updating section to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroennoten committed Mar 21, 2016
1 parent 3951855 commit 50f874c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ I just want a template to build my admin panel. Therefore, I made this package.
Right now the functionality is very basic, I will add more features later, but let's
start simple.

- [Installation](#installation)
- [Updating](#updating)
- [Usage](#usage)
- [Login and Registration Form](#login-and-registration-form)
- [Configuration](#configuration)
- [Translations](#translations)
- [Customize views](#customize-views)

## Installation

1. Require the package using composer:
Expand All @@ -31,6 +39,20 @@ start simple.
php artisan vendor:publish --provider="JeroenNoten\LaravelAdminLte\ServiceProvider" --tag=assets
```

## Updating

1. To update this package, first update the composer package:

```
composer update jeroennoten/laravel-adminlte
```

2. Then, publish the public assets with the `--force` flag to overwrite existing files

```
php artisan vendor:publish --provider="JeroenNoten\LaravelAdminLte\ServiceProvider" --tag=assets --force
```

## Usage

To use the template, create a blade file and extend the layout with `@extends('adminlte::page')`.
Expand Down

0 comments on commit 50f874c

Please sign in to comment.