Welcome to mirror list, hosted at ThFree Co, Russian Federation.

link_table.blade.php « snippets « views « resources - github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8a2e5aad1893b25e062b3ad9d4f8a2c255fc372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<table id="{{$table_id}}" class="table table-hover">
    <thead>
        <tr>
            <th>Link Ending</th>
            <th>Long Link</th>
            <th>Clicks</th>
            <th>Date</th>
            @if ($table_id == "admin_links_table")
            {{-- Show action buttons only if admin view --}}
            <th>Creator</th>
            <th>Control</th>
            @endif
        </tr>
    </thead>
</table>