Skip to content

Commit

Permalink
change route for file download export class
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorarnau committed Jul 1, 2019
1 parent 3cc2c9e commit 1545395
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/admin/views/pages/list_classes_export.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<section class="">
<div class="container">
<form class="form" method="post" ENCTYPE="multipart/form-data" action="/admin/list_class_import">
<form class="form" method="post" ENCTYPE="multipart/form-data" action="{{route('editora.action', 'list_class_import/')}}">
{{csrf_field()}}
<input type="file" name="file_class">
<input type="submit" value="Enviar">
Expand Down Expand Up @@ -76,8 +76,8 @@
<td class="tit">{{$item['name']}}</td>
<td class="favorite">
<span>
<a href="/admin/list_class_export?id={{$item['class_id'].'&name='.$item['name']}}" class="btn-square clr-default">
<i class="icon-pencil"></i>
<a href="{{route('editora.action', 'list_class_export/?id='.$item['class_id'].'&name='.$item['name'])}}" class="btn-square clr-default">
<i class="icon-file"></i>
</a>
</span>
</td>
Expand Down

0 comments on commit 1545395

Please sign in to comment.