Advertisement
NanoCellMusic

View

Jan 19th, 2020
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. @extends('layouts.app')
  2. @section('content')
  3. <!-- ============================================================== -->
  4. <!-- Page Content -->
  5. <!-- ============================================================== -->
  6. <div id="page-wrapper">
  7. <div class="container-fluid">
  8. <div class="row bg-title">
  9. <div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
  10. <h4 class="page-title">Website Manager</h4>
  11. </div>
  12. <div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
  13. <button class="right-side-toggle waves-effect waves-light btn-info btn-circle pull-right m-l-20"><i class="ti-settings text-white"></i></button>
  14. <ol class="breadcrumb">
  15. <li><a href="#">Dashboard</a></li>
  16. <li class="active">Business Pages</li>
  17. </ol>
  18. </div>
  19. <!-- /.col-lg-12 -->
  20. </div>
  21. <!-- /.row -->
  22. <div class="row">
  23. <div class="col-md-12">
  24. <div class="panel panel-info">
  25. <div class="panel-heading">Websites</div>
  26. <div class="panel-wrapper collapse in" aria-expanded="true">
  27. <div class="table-responsive">
  28. <table class="table table-hover">
  29. <thead>
  30. <tr>
  31. <th>#</th>
  32. <th>COMPANY NAME</th>
  33. <th>LINK</th>
  34. <th>TYPE</th>
  35. <th>SUBMITTED</th>
  36. <th>NOTIFY TIME</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. @foreach ($ads as $ad)
  41. <tr class="website-row" data-href="{{ route('pba.index') .'/'. $ad->id }}">
  42. <td><span class="font-medium">{{ $ad->company->name}}</span></td>
  43. <td><span class="font-medium">{{$ad->link}}</span></td>
  44. <td><span class="font-medium">{{$ad->type}}</span></td>
  45. <td><span class="font-medium">{{$ad->submitted}}</span></td>
  46. <td><span class="font-medium">{{$ad->notifyTime}}</span></td>
  47. </tr>
  48. @endforeach
  49. </tbody>
  50. </table>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. @endsection
  57.  
  58.  
  59. @section('script')
  60. <script>
  61. $(document).ready(function(){
  62. $(".website-row").click(function() {
  63. window.location = $(this).data("href");
  64. });
  65. });
  66. </script>
  67. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement