Created
August 1, 2015 03:19
-
-
Save winwu/cfce418ed47f53b98895 to your computer and use it in GitHub Desktop.
Laravel-檔案上傳-html-sample.php
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
{!! Form::open(array( | |
'route' => 'media.store', | |
'class' => 'form-horizontal', | |
'id' => 'media-frm', | |
'method'=>'POST', | |
'files'=>'true' )) | |
!!} | |
<!--單檔上傳請用這個 Form::file --> | |
{!! Form::file('photo') !!} | |
<!--多檔上傳請用這個 Form::file --> | |
{!! Form::file('photo[]', array('multiple'=>true)) !!} | |
<input type="submit" value="上傳"/> | |
{!! Form::close() !!} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment