Created
January 6, 2016 01:52
-
-
Save hoanganh25991/6b066207869d06e08cf1 to your computer and use it in GitHub Desktop.
view rely on 'info' injected from controller, what happen if $messages is not format as array(key => array())
This file contains hidden or 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
@section('messages') | |
<div id="page_messages"> | |
@foreach($messages as $key => $values) | |
@foreach($values as $value) | |
<input type="hidden" name="{{$key}}" value="{{$value}}"> | |
@endforeach | |
@endforeach | |
</div> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment