PHP Classes

File: resources/views/snippets/link_table.blade.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Polr Admin Dashboard   resources/views/snippets/link_table.blade.php   Download  
File: resources/views/snippets/link_table.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Polr Admin Dashboard
Another admin dashboard for the Polr URL shortener
Author: By
Last change:
Date: 6 years ago
Size: 762 bytes
 

Contents

Class file image Download
<table id="{{$table_id}}" class="table table-hover">
    <thead>
        <tr>
            {{-- Show action buttons only if admin view --}}
            @if ($table_id == "admin_links_table")
            <th class="col-sm-1">Ending</th>
            <th class="col-sm-4">Long Link</th>
            <th class="col-sm-1">Clicks</th>
            <th class="col-sm-2">Date</th>
            <th class="col-sm-2">Creator</th>
            <th class="col-sm-1">Disable</th>
            <th class="col-sm-1">Delete</th>
            @else
            <th class="col-sm-2">Ending</th>
            <th class="col-sm-5">Long Link</th>
            <th class="col-sm-2">Clicks</th>
            <th class="col-sm-3">Date</th>
            @endif
        </tr>
    </thead>
</table>