Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @extends('layouts.app')
- @section('content')
- <!-- ============================================================== -->
- <!-- Page Content -->
- <!-- ============================================================== -->
- <div id="page-wrapper">
- <div class="container-fluid">
- <div class="row bg-title">
- <div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
- <h4 class="page-title">Website Manager</h4>
- </div>
- <div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
- <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>
- <ol class="breadcrumb">
- <li><a href="#">Dashboard</a></li>
- <li class="active">Business Pages</li>
- </ol>
- </div>
- <!-- /.col-lg-12 -->
- </div>
- <!-- /.row -->
- <div class="row">
- <div class="col-md-12">
- <div class="panel panel-info">
- <div class="panel-heading">Websites</div>
- <div class="panel-wrapper collapse in" aria-expanded="true">
- <div class="table-responsive">
- <table class="table table-hover">
- <thead>
- <tr>
- <th>#</th>
- <th>COMPANY NAME</th>
- <th>LINK</th>
- <th>TYPE</th>
- <th>SUBMITTED</th>
- <th>NOTIFY TIME</th>
- </tr>
- </thead>
- <tbody>
- @foreach ($ads as $ad)
- <tr class="website-row" data-href="{{ route('pba.index') .'/'. $ad->id }}">
- <td><span class="font-medium">{{ $ad->company->name}}</span></td>
- <td><span class="font-medium">{{$ad->link}}</span></td>
- <td><span class="font-medium">{{$ad->type}}</span></td>
- <td><span class="font-medium">{{$ad->submitted}}</span></td>
- <td><span class="font-medium">{{$ad->notifyTime}}</span></td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
- @section('script')
- <script>
- $(document).ready(function(){
- $(".website-row").click(function() {
- window.location = $(this).data("href");
- });
- });
- </script>
- @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement