Skip to content

Commit

Permalink
v3.1.5
Browse files Browse the repository at this point in the history
* Publish extension assets and migrations during `php artisan orchestra:assemble`.
* Add `appendTableColumns()` and `prependTableColumns()` to `Orchestra\Foundation\Http\Presenters\User`.
* Tweak `resources/views/components/messages.php`.
* Add assets:
  - Vue 0.12.6

Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Jul 6, 2015
1 parent 4d4815b commit 1882a12
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/changes.md
Expand Up @@ -5,6 +5,14 @@ title: Foundation Change Log

## Version 3.1 {#v3-1}

### v3.1.5 {#v3-1-5}

* Publish extension assets and migrations during `php artisan orchestra:assemble`.
* Add `appendTableColumns()` and `prependTableColumns()` to `Orchestra\Foundation\Http\Presenters\User`.
* Tweak `resources/views/components/messages.php`.
* Add assets:
- Vue 0.12.6

### v3.1.4 {#v3-1-4}

* Add login throttles using `Orchestra\Foundation\Auth\BasicThrottle`.
Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/messages.php
Expand Up @@ -2,14 +2,14 @@

$format = <<<MESSAGE
<div class="alert alert-:key">
:message <button class="close" data-dismiss="alert">×</button>
:message <button class="close" data-dismiss="alert">×</button>
</div>
MESSAGE;

$message = app('orchestra.messages')->retrieve();

if ($message instanceof Orchestra\Messages\MessageBag) :
$message->setFormat($format);
$message->setFormat($format);

foreach (['error', 'info', 'success'] as $key) :
if ($message->has($key)) :
Expand Down

0 comments on commit 1882a12

Please sign in to comment.