index.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @extends('layouts.admin')
  2. @section('title')
  3. Stagioni
  4. @stop
  5. @section('content')
  6. <div class="row">
  7. <div class="col-xs-12">
  8. <div class="box">
  9. <div class="box-body table-responsive no-padding">
  10. <table class="table table-striped table-hover">
  11. <tr>
  12. <th>Nome</th>
  13. <th>Stagione corrente</th>
  14. <th width="50"></th>
  15. <th width="50"></th>
  16. </tr>
  17. @foreach($seasons as $season)
  18. <tr>
  19. <td>{{$season->name}}</td>
  20. <td>{{$season->default ? 'X' : ''}}</td>
  21. <td>
  22. <a href="{{ route('seasons.edit', array($season->id)) }}" type="button" class="btn btn-w-m btn-primary">Modifica</a>
  23. </td>
  24. <td>
  25. {!! Form::open(array('class' => 'form-inline', 'method' => 'DELETE', 'route' => array('seasons.destroy', $season->id))) !!}
  26. <button type="submit" class="btn btn-w-m btn-danger" onclick="return confirm('Sei sicuro?')">Elimina</button>
  27. {!! Form::close() !!}
  28. </td>
  29. </tr>
  30. @endforeach
  31. </table>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="col-xs-2">
  36. <a href="{{ route('seasons.create') }}" class="btn btn-success">Aggiungi</a>
  37. </div>
  38. </div>
  39. @stop