Skip to content

Instantly share code, notes, and snippets.

@winwu
Created August 1, 2015 03:19
Show Gist options
  • Save winwu/cfce418ed47f53b98895 to your computer and use it in GitHub Desktop.
Save winwu/cfce418ed47f53b98895 to your computer and use it in GitHub Desktop.
Laravel-檔案上傳-html-sample.php
{!! 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