You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

residential-form.blade.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435
  1. @extends('sales.layout.master')
  2. @section('page_title', 'Dashboard')
  3. @section('subpage', 'Graph & Summary Report')
  4. @section('img_profile', asset($user->StaffDetail->user_pic))
  5. @section('login_name', $user->StaffDetail->name)
  6. @section('last_login', $user->last_login_at )
  7. @section('content')
  8. <style>
  9. .ui-tabs .ui-tabs-nav li.ui-tabs-active a { color: #EA5730 !important; }
  10. .ui-widget-content .bRed { color: #fff !important; }
  11. </style>
  12. <!-- Table dealer -->
  13. <div class="fluid">
  14. <!-- Square buttons -->
  15. <ul class="middleNavA">
  16. <li>
  17. <a target="_blank" href="{{ url('/residential/50Mbps/application-form/address').'/'.$user->_id}}" title="50Mbps">
  18. <img src="{{ url('assets/img/category.png') }}" alt="" /><span>50 Mbps</span></a>
  19. </li>
  20. <li><a target="_blank" href="{{ url('/residential/100Mbps/application-form/address').'/'.$user->_id}}" title="100Mbps">
  21. <img src="{{ url('assets/img/category.png') }}" alt="" /><span>100 Mbps</span></a>
  22. </li>
  23. <li><a target="_blank" href="{{ url('/residential/500Mbps/application-form/address').'/'.$user->_id}}" title="500Mbps">
  24. <img src="{{ url('assets/img/category.png') }}" alt="" /><span>500 Mbps</span></a>
  25. </li>
  26. <li><a target="_blank" href="{{ url('/residential/1Gbps/application-form/address').'/'.$user->_id}}" title="1Gbps">
  27. <img src="{{ url('assets/img/category.png') }}" alt="" /><span>1 Gbps</span></a>
  28. </li>
  29. </ul>
  30. </div>
  31. @endsection
  32. @section('external_js')
  33. @endsection