PHP Classes

File: resources/views/default.blade.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Polr Admin Dashboard   resources/views/default.blade.php   Download  
File: resources/views/default.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: 655 bytes
 

Contents

Class file image Download
<div class="row">
    <div class="col-md-12">
        <div class="portlet light">
            <div class="portlet-title tabbable-line">
                <ul class="nav nav-tabs admin-nav">
@foreach( $tabs as $id => $tab )
                    <li class="{{ $tab->active ? 'active' : '' }} {{ $tab->class }}">
                        <a href="#{{ $id }}" data-toggle="tab">{{ $tab->title }}</a>
                    </li>
@endforeach
                </ul>
            </div>
            <div class="portlet-body">
                <div class="tab-content">
@foreach( $tabs as $id => $tab )
                    <div class="tab-pane {{ $tab->active ? 'active' : '' }} {{ $tab->class }}" id="{{ $id }}">
                        {!! $tab->view !!}
                    </div>
@endforeach
                </div>
            </div>
        </div>
    </div>
</div>