index.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @extends('layouts.pro-logged-in')
  2. @section('content')
  3. <div class="d-flex mb-2">
  4. <div><i class="fa fa-users" aria-hidden="true"></i> My Teams List</div>
  5. <div class="ml-auto">
  6. <a class="btn btn-primary btn-sm" href="{{route('my-teams-create')}}">
  7. <i class="fa fa-plus-circle" aria-hidden="true"></i>
  8. Add New
  9. </a>
  10. </div>
  11. </div>
  12. <div class="table-responsive p-0">
  13. <table class="table table-hover text-nowrap">
  14. <thead>
  15. <tr>
  16. <th>ID</th>
  17. <th>Team #</th>
  18. <th>HCP</th>
  19. <th>Ally</th>
  20. <th>Client Count</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. @foreach($rows as $row)
  25. <tr>
  26. <td><a href="/my-teams/<?= $row->uid ?>"><?= $row->id ?></a></td>
  27. <td><?= $row->team_number ?></td>
  28. <td><?= $row->hcp_pro_id ?></td>
  29. <td><?= $row->ally_pro_id ?></td>
  30. <td><?= $row->client_count ?></td>
  31. </tr>
  32. @endforeach
  33. </tbody>
  34. </table>
  35. </div>
  36. @endsection