outlet-ordering-mode.blade.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @extends('layouts.app')
  2. @section('content')
  3. @php
  4. $resto = \Illuminate\Support\Facades\Auth::user()->restaurants;
  5. $lang = $resto->default_lang;
  6. app()->setLocale($lang);
  7. if(session('app_lang') !==null){
  8. $lang = session('app_lang');
  9. app()->setLocale($lang);
  10. }
  11. @endphp
  12. <link href="{!! env('APP_ASSETS') !!}/vendor_components/dropzone/dropzone.css" rel="stylesheet"/>
  13. <link href="{!! env('APP_ASSETS') !!}/vendor_components/bootstrap-tagsinput/dist/bootstrap-tagsinput.css" rel="stylesheet"/>
  14. <style>
  15. .vtabs .tabs-vertical {
  16. width: 229px;
  17. }
  18. .bootstrap-tagsinput {
  19. min-height: 60px; width: 100%;
  20. }
  21. h4{ margin-top: 40px}
  22. </style>
  23. <!-- Content Wrapper. Contains page content -->
  24. <div class="content-wrapper">
  25. <div class="container-full">
  26. <!-- Content Header (Page header) -->
  27. <div class="content-header">
  28. <div class="d-flex align-items-center">
  29. <div class="me-auto">
  30. <h4 class="page-title">Outlets</h4>
  31. <div class="d-inline-block align-items-center">
  32. <nav>
  33. <ol class="breadcrumb">
  34. <li class="breadcrumb-item"><a href="{!! env('APP_URL') !!}dashboard"><i
  35. class="mdi mdi-home-outline"></i></a></li>
  36. <li class="breadcrumb-item active" aria-current="page">Outlets</li>
  37. </ol>
  38. </nav>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. <!-- Main content -->
  44. <section class="content">
  45. <div class="row">
  46. <div class="col-12">
  47. <div class="box">
  48. <div class="box-header with-border">
  49. <h4 class="box-title">Create new outlet</h4>{{--
  50. <h6 class="box-subtitle">Use default tab with class <code>vtabs &amp; tabs-vertical</code></h6>--}}
  51. </div>
  52. <!-- /.box-header -->
  53. <div class="box-body">
  54. <!-- Nav tabs -->
  55. <div class="vtabs">
  56. @include('outlets.outlet-sidebar')
  57. <!-- Tab panes -->
  58. <div class="tab-content" style="width: 70%">
  59. <div class="tab-pane active" id="basic-information" role="tabpanel">
  60. <div class="p-15">
  61. <h4 style="margin-top: 0">Ordering Mode</h4>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. <!-- /.box-body -->
  68. </div>
  69. <!-- /.box -->
  70. </div>
  71. </div>
  72. </section>
  73. <!-- /.content -->
  74. </div>
  75. </div>
  76. <!-- /.content-wrapper -->
  77. @endsection
  78. @section('js')
  79. @endsection