Advertisement
Guest User

Untitled

a guest
Nov 9th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. @extends('layouts.backend')
  2.  
  3. @section('header_script')
  4. @endsection
  5.  
  6. @section('mainTitle')
  7. User
  8. @endsection
  9.  
  10. @section('topButton')
  11. <a href="/user/create" class="btn btn-link btn-float has-text">
  12. <i class="icon-plus-circle2 text-primary"></i>
  13. <span>New User</span>
  14. </a>
  15. @endsection
  16.  
  17. @section('content')
  18. <div class="panel panel-default">
  19. <div class="panel-body">
  20. <div class="row">
  21. <div class="col-md-12 table-responsive">
  22. <table class="table table-striped">
  23. <thead>
  24. <tr>
  25. <th scope="col">#</th>
  26. <th scope="col">Name</th>
  27. <th scope="col">IC Number</th>
  28. <th scope="col">Role</th>
  29. <th scope="col">Status</th>
  30. <th scope="col">Action</th>
  31. </tr>
  32. </thead>
  33. <tbody>
  34. @foreach($users as $user)
  35. <tr>
  36. <th scope="row">1</th>
  37. <td>{{$student->name}}</td>
  38. <td>{{$student->ic_number}}</td>
  39. <td>{{$student->ic_number}}</td>
  40. <td>{{$student->role}}</td>
  41. <td>@if($student->status== 'active')
  42. <span class="labe label-success">{{$student->status}}</span>
  43. @else
  44. <span class="labe label-changer">{{$student->status}}</span>
  45. @endif
  46. <td>{{$student->status}}</td>
  47. <td>
  48. <div class="dropdown">
  49. <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
  50. Dropdown
  51. <span class="caret"></span>
  52. </button>
  53. <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
  54. <li><a href="/student/show/{{ $student->id }}"><i class="icon-display"></i>view</a></li>
  55. <li><a href="/student/edit/{{ $student->id }}"><i class="icon-pencil"></i>edit</a></li>
  56. <li><a href="/student/destroy/{{ $student->id }}"><i class="icon-trash"></i>delete</a></li>
  57.  
  58. </ul>
  59. </div>
  60. </td>
  61. </tr>
  62. @endforeach
  63. </tbody>
  64. </table>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement