mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
Move the edit-list token outside the ul
This commit is contained in:
parent
34183cb338
commit
b1533bb233
1 changed files with 2 additions and 2 deletions
|
@ -12,13 +12,13 @@
|
||||||
|
|
||||||
@section('dashboard-body')
|
@section('dashboard-body')
|
||||||
<div id="edit-list-wrapper">
|
<div id="edit-list-wrapper">
|
||||||
|
<input type="hidden" name="_token" id="token" value="{{ csrf_token() }}" />
|
||||||
|
|
||||||
@if($filter)
|
@if($filter)
|
||||||
<input id="filter-input" class="search" placeholder="Filter" />
|
<input id="filter-input" class="search" placeholder="Filter" />
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<ul id="edit-list" class="list-group edit-list list" data-model="{{ $model }}" data-path="{{ isset($path) ? $path : $model }}" {{ $sortcol != false ? "data-sort=$sortcol" : '' }}>
|
<ul id="edit-list" class="list-group edit-list list" data-model="{{ $model }}" data-path="{{ isset($path) ? $path : $model }}" {{ $sortcol != false ? "data-sort=$sortcol" : '' }}>
|
||||||
<input type="hidden" name="_token" id="token" value="{{ csrf_token() }}" />
|
|
||||||
|
|
||||||
@foreach($rows as $row)
|
@foreach($rows as $row)
|
||||||
<li class="list-group-item" data-id="{{ $row['id'] }}">
|
<li class="list-group-item" data-id="{{ $row['id'] }}">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
|
Loading…
Reference in a new issue