index.blade.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @extends('layouts.admin')
  2. @section('title')
  3. Pubblicità Sezione {{$section->name}}
  4. @stop
  5. @section('content')
  6. @foreach($aDatas as $idx => $data)
  7. <div class="row">
  8. <div class="col-xs-2">
  9. <h2>{{$idx}}</h2>
  10. </div>
  11. <div class="col-xs-10 text-right">
  12. <br><a href="{{ route('sections.advs.create', $section) }}?position={{$idx}}" class="btn btn-success">Aggiungi</a>
  13. </div>
  14. </div>
  15. <div class="row">
  16. <div class="col-xs-2">
  17. </div>
  18. <div class="col-xs-12">
  19. <div class="col-xs-12">
  20. <div class="box">
  21. <div class="box-body table-responsive no-padding">
  22. <table class="table table-striped table-hover">
  23. <tr>
  24. <th>Nome</th>
  25. <th>Google</th>
  26. <th>Immagine</th>
  27. <th>Online</th>
  28. <th></th>
  29. <th></th>
  30. </tr>
  31. @foreach($data as $adv)
  32. <tr>
  33. <td>{{$adv->name}}</td>
  34. <td>{{$adv->google_code}}</td>
  35. <td>
  36. @if($adv->image != '')
  37. <img class="hidden-xs"src="/files/adv/{{$adv->image}}" style="max-width:250px" />
  38. <img class="hidden-md hidden-lg" src="/files/adv/{{$adv->image}}" style="max-width:50px" />
  39. @endif
  40. </td>
  41. <td>{{$adv->online ? 'Si' : 'No'}}</td>
  42. <td>
  43. <a href="{{ route('sections.advs.edit', array($section, $adv->id)) }}" type="button" class="btn btn-w-m btn-primary"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a>
  44. </td>
  45. <td>
  46. {!! Form::open(array('class' => 'form-inline', 'method' => 'DELETE', 'route' => array('sections.advs.destroy', $section, $adv->id))) !!}
  47. <button type="submit" class="btn btn-w-m btn-danger" onclick="return confirm('Sei sicuro?')"><i class="fa fa-trash" aria-hidden="true"></i></button>
  48. {!! Form::close() !!}
  49. </td>
  50. </tr>
  51. @endforeach
  52. </table>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. @endforeach
  59. <div class="col-xs-2" style="margin-top:50px">
  60. <a href="{{ route('sections.index') }}" class="btn btn-info">Torna a Gestione layout, news a banner</a>
  61. </div>
  62. @stop