Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <form id="form" class="form-horizontal form-bordered" method="POST" action="{{ route('sandingkan.store') }}" enctype="multipart/form-data">
  2.  
  3. <select class="form-control select2" name="figure[]">
  4. <option></option>
  5. @foreach ($figures as $key => $figure)
  6. <option value="{{ $figure->id }}">{{ $figure->name }}</option>
  7. @endforeach
  8. </select>
  9.  
  10.  
  11. </form>
  12.  
  13.  
  14. controller
  15.  
  16. public function store(Request $request){
  17. // masih kosong
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement