-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
637bb1e
commit 8bc6748
Showing
59 changed files
with
378 additions
and
312 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
<td> | ||
<div style="width: 30px;"> | ||
<input type="checkbox" class="adminCheckboxRow" value="{{ $value }}"/> | ||
</div> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
<input type="checkbox" class="adminCheckboxRow" value="{{ $value }}"/> | ||
</td> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
<td>{{{ $value }}} {!! $append !!}</td> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
{{{ $value }}} {!! $append !!} | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
<td>{!! $value !!} {!! $append !!}</td> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
{!! $value !!} {!! $append !!} | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
<td data-order="{{ $originalValue }}">{{ $value }} {!! $append !!}</td> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
{{ $value }} {!! $append !!} | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@if ( ! is_null($value)) | ||
<a href="{{ $url }}"><i class="fa {{ $isSelf ? 'fa-filter' : 'fa-arrow-circle-o-right' }}" data-toggle="tooltip" title="{{ $isSelf ? trans('admin::lang.table.filter') : trans('admin::lang.table.filter-goto') }}"></i></a> | ||
@endif | ||
<a href="{{ $url }}" class="btn btn-link btn-outline"> | ||
<i class="fa {{ $icon }}" data-toggle="tooltip" title="{{ $title }}"></i> | ||
</a> | ||
@endif |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
<th data-orderable="{{ $orderable ? 'true' : 'false' }}">{!! $title !!}</th> | ||
<th data-orderable="{{ $orderable ? 'true' : 'false' }}" class="row-header"> | ||
{!! $title !!} | ||
</th> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<td> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
@if ( ! empty($value)) | ||
<a href="{{ $value }}" data-toggle="lightbox"> | ||
<img class="thumbnail" src="{{ $value }}" width="80px"> | ||
</a> | ||
@endif | ||
{!! $append !!} | ||
</td> | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<td {!! HTML::attributes($attributes) !!}> | ||
{!! link_to($link, $value, $linkAttributes) !!} {!! $append !!} | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<td> | ||
<ul class="list-unstyled"> | ||
@foreach ($values as $value) | ||
<li>{{ $value }}</li> | ||
@endforeach | ||
</ul> | ||
</td> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
@foreach ($values as $value) | ||
<span class="label label-info">{{ $value }}</span> | ||
@endforeach | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
<td> | ||
<div class="text-right" style="width: 110px;"> | ||
@if ($movableUp) | ||
<form action="{{ $moveUpUrl }}" method="POST" style="display:inline-block;"> | ||
<input type="hidden" name="_token" value="{{ csrf_token() }}" /> | ||
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="{{ trans('admin::lang.table.moveUp') }}"> | ||
↑ | ||
</button> | ||
</form> | ||
@endif | ||
@if ($movableDown) | ||
<form action="{{ $moveDownUrl }}" method="POST" style="display:inline-block;"> | ||
<input type="hidden" name="_token" value="{{ csrf_token() }}" /> | ||
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="{{ trans('admin::lang.table.moveDown') }}"> | ||
↓ | ||
</button> | ||
</form> | ||
@endif | ||
</div> | ||
</td> | ||
<td {!! HTML::attributes($attributes) !!}> | ||
@if ($movableUp) | ||
<form action="{{ $moveUpUrl }}" method="POST" style="display:inline-block;"> | ||
<input type="hidden" name="_token" value="{{ csrf_token() }}" /> | ||
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="{{ trans('sleeping_owl::lang.table.moveUp') }}"> | ||
↑ | ||
</button> | ||
</form> | ||
@endif | ||
@if ($movableDown) | ||
<form action="{{ $moveDownUrl }}" method="POST" style="display:inline-block;"> | ||
<input type="hidden" name="_token" value="{{ csrf_token() }}" /> | ||
<button class="btn btn-default btn-sm" data-toggle="tooltip" title="{{ trans('sleeping_owl::lang.table.moveDown') }}"> | ||
↓ | ||
</button> | ||
</form> | ||
@endif | ||
</td> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<td>{{ $value }} {!! $append !!}</td> | ||
<td {!! HTML::attributes($attributes) !!}>{{ $value }} {!! $append !!}</td> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@if ( ! is_null($url)) | ||
<a href="{{ $url }}"><i class="fa fa-arrow-circle-o-right" data-toggle="tooltip" title="{{ trans('admin::lang.table.filter-goto') }}"></i></a> | ||
@endif | ||
<a href="{{ $url }}"> | ||
<i class="fa fa-arrow-circle-o-right" data-toggle="tooltip" title="{{ trans('sleeping_owl::lang.table.filter-goto') }}"></i> | ||
</a> | ||
@endif |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<tr> | ||
@foreach ($columns as $index => $column) | ||
<?php $columnFilter = array_get($columnFilters, $index); ?> | ||
<td data-index="{{ $index }}">{!! $columnFilter !!}</td> | ||
@endforeach | ||
</tr> |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.