index.blade.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 class="form-inline" method="POST" action="{{ route('sections.advs.destroy', array($section, $adv->id)) }}">
  47. @csrf
  48. @method('DELETE')
  49. <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>
  50. </form>
  51. </td>
  52. </tr>
  53. @endforeach
  54. </table>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. @endforeach
  61. <div class="col-xs-2" style="margin-top:50px">
  62. <a href="{{ route('sections.index') }}" class="btn btn-info">Torna a Gestione layout, news a banner</a>
  63. </div>
  64. @stop