|
36 | 36 | <td>{{{ $check->theUser->email }}}</td>
|
37 | 37 | <td>{{{ $check->theCompany->name }}}</td>
|
38 | 38 | <td>{{{ $check->intervalFormatted }}}</td>
|
39 |
| - <td> |
40 |
| - <div class="btn-group"> |
41 |
| - <a class="btn btn-default" href="{{ URL::route('check.show', array('id' => $check->id)) }}">{{ trans('check.index.show') }}</a> |
42 |
| - <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> |
43 |
| - <span class="caret"></span> |
44 |
| - <span class="sr-only">{{ trans('check.index.toggle') }}</span> |
45 |
| - </button> |
46 |
| - <ul class="dropdown-menu" role="menu"> |
47 |
| - <li><a href="{{ URL::route('check.edit', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-pencil"></span> {{ trans('check.index.edit') }}</a></li> |
48 |
| - @if ($check->isPaused()) |
49 |
| - <li><a href="{{ URL::route('check.unpause', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-play"></span> {{ trans('check.index.unpause') }}</a></li> |
50 |
| - @else |
51 |
| - <li><a href="{{ URL::route('check.pause', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-stop"></span> {{ trans('check.index.pause') }}</a></li> |
52 |
| - @endif |
53 |
| - <li><a href="{{ URL::route('check.delete', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-trash"></span> {{ trans('check.index.delete') }}</a></li> |
54 |
| - </ul> |
| 39 | + <td class="clearfix"> |
| 40 | + <div class="pull-right"> |
| 41 | + <div class="btn-group"> |
| 42 | + <a class="btn btn-default" href="{{ URL::route('check.show', array('id' => $check->id)) }}">{{ trans('check.index.show') }}</a> |
| 43 | + <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> |
| 44 | + <span class="caret"></span> |
| 45 | + <span class="sr-only">{{ trans('check.index.toggle') }}</span> |
| 46 | + </button> |
| 47 | + <ul class="dropdown-menu" role="menu"> |
| 48 | + <li><a href="{{ URL::route('check.edit', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-pencil"></span> {{ trans('check.index.edit') }}</a></li> |
| 49 | + @if ($check->isPaused()) |
| 50 | + <li><a href="{{ URL::route('check.unpause', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-play"></span> {{ trans('check.index.unpause') }}</a></li> |
| 51 | + @else |
| 52 | + <li><a href="{{ URL::route('check.pause', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-stop"></span> {{ trans('check.index.pause') }}</a></li> |
| 53 | + @endif |
| 54 | + <li><a href="{{ URL::route('check.delete', array('id' => $check->id)) }}"><span class="glyphicon glyphicon-trash"></span> {{ trans('check.index.delete') }}</a></li> |
| 55 | + </ul> |
| 56 | + </div> |
55 | 57 | </div>
|
56 | 58 | </td>
|
57 | 59 | </tr>
|
|
0 commit comments