home.blade.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Invites</h3>
  5. <p class="lead">Send email invites to your friends and family!</p>
  6. </div>
  7. <hr>
  8. @if($invites->count() > 0)
  9. <table class="table table-light">
  10. <thead>
  11. <tr>
  12. <th scope="col">#</th>
  13. <th scope="col">Email</th>
  14. <th scope="col">Valid For</th>
  15. <th scope="col">Actions</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. @foreach($invites as $invite)
  20. <tr>
  21. <th scope="row">{{$invite->id}}</th>
  22. <td>{{$invite->email}}</td>
  23. <td>{{$invite->message}}</td>
  24. <td>
  25. @if($invite->used_at == null)
  26. <button class="btn btn-outline-danger btn-sm">Delete</button>
  27. @endif
  28. </td>
  29. </tr>
  30. @endforeach
  31. </tbody>
  32. </table>
  33. @else
  34. <div class="d-flex align-items-center justify-content-center text-center pb-4">
  35. <div>
  36. <p class="pt-5"><i class="far fa-envelope-open text-lighter fa-6x"></i></p>
  37. <p class="lead">You haven't invited anyone yet.</p>
  38. <p><a class="btn btn-primary btn-lg py-0 font-weight-bold" href="{{route('settings.invites.create')}}">Invite someone</a></p>
  39. <p class="font-weight-lighter text-muted">You have <b class="font-weight-bold text-dark">{{$limit - $used}}</b> invites left.</p>
  40. </div>
  41. </div>
  42. @endif
  43. @endsection