12345678910111213141516171819202122232425262728 |
- @extends('dealer.layout.master')
- @section('page_title', 'Dashboard')
- @section('subpage', 'Graph & Summary Report')
- @section('img_profile', asset($userDetails->user_pic))
- @section('login_name', $userDetails->name )
- @section('last_login', $user->last_login_at )
-
- @section('content')
- <style>
- .ui-tabs .ui-tabs-nav li.ui-tabs-active a { color: #EA5730 !important; }
- .ui-widget-content .bRed { color: #fff !important; }
- </style>
- <!-- Table dealer -->
- <div class="fluid">
- <!-- Square buttons -->
- <ul class="middleNavA">
- <li><a target="_blank" href="{{ url('/residential/100Mbps/application-form/address').'/'.$user->_id}}" title="100Mbps">
- <img src="{{ url('assets/img/category.png') }}" alt="" /><span>100 Mbps</span></a>
- </li>
- <li><a target="_blank" href="{{ url('/residential/1Gbps/application-form/address').'/'.$user->_id}}" title="1Gbps">
- <img src="{{ url('assets/img/category.png') }}" alt="" /><span>1 Gbps</span></a>
- </li>
- </ul>
- </div>
- @endsection
-
- @section('external_js')
- @endsection
|