86 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <!-- Tell the browser to be responsive to screen width -->
 | |
|     <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
 | |
| 
 | |
|     <title>@yield('title') - @setting('general.company_name')</title>
 | |
| 
 | |
|     <!-- Bootstrap 3.3.6 -->
 | |
|     <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/bootstrap/css/bootstrap.min.css') }}">
 | |
|     <!-- Font Awesome -->
 | |
|     <link rel="stylesheet" href="{{ asset('public/css/font-awesome.min.css') }}">
 | |
|     <!-- Ionicons -->
 | |
|     <link rel="stylesheet" href="{{ asset('public/css/ionicons.min.css') }}">
 | |
|     <!-- Theme style -->
 | |
|     <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/AdminLTE.min.css') }}">
 | |
|     <!-- AdminLTE Skins -->
 | |
|     @if (setting('general.admin_theme', 'skin-green-light') == 'skin-green-light')
 | |
|         <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-green-light.min.css') }}">
 | |
|     @else
 | |
|         <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-black.min.css') }}">
 | |
|         <link rel="stylesheet" href="{{ asset('public/css/skin-black.css?v=1.0.7') }}">
 | |
|     @endif
 | |
|     <!-- Select2 -->
 | |
|     <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.css') }}">
 | |
|     <!-- App style -->
 | |
|     <link rel="stylesheet" href="{{ asset('public/css/app.css?v=1.0.7') }}">
 | |
|     <link rel="stylesheet" href="{{ asset('public/css/akaunting-green.css?v=1.0.7') }}">
 | |
|     <link rel="stylesheet" href="{{ asset('public/css/modules.css?v=1.0.7') }}">
 | |
|     
 | |
|     <link rel="shortcut icon" href="{{ asset('public/img/favicon.ico') }}">
 | |
|     
 | |
|     @yield('css')
 | |
| 
 | |
|     @yield('stylesheet')
 | |
| 
 | |
|     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
 | |
|     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
 | |
|     <!--[if lt IE 9]>
 | |
|     <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
 | |
|     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
 | |
|     <![endif]-->
 | |
| 
 | |
|     <!-- jQuery 2.2.3 -->
 | |
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/jQuery/jquery-2.2.3.min.js') }}"></script>
 | |
|     <!-- Bootstrap 3.3.6 -->
 | |
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/bootstrap/js/bootstrap.min.js') }}"></script>
 | |
|     <!-- SlimScroll -->
 | |
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/slimScroll/jquery.slimscroll.min.js') }}"></script>
 | |
|     <!-- FastClick -->
 | |
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/fastclick/fastclick.js') }}"></script>
 | |
|     <!-- AdminLTE App -->
 | |
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/dist/js/app.min.js') }}"></script>
 | |
| 
 | |
|     <!-- Select2 -->
 | |
|     <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script>
 | |
| 
 | |
|     <script src="{{ asset('public/js/app.js?v=1.0') }}"></script>
 | |
| 
 | |
|     <script type="text/javascript"><!--
 | |
|         var url_search = '{{ url("search/search/search") }}';
 | |
|     //--></script>
 | |
| 
 | |
|     <script type="text/javascript">
 | |
|         $(document).ready(function() {
 | |
|             $('select[name=\'category\']').on('change', function() {
 | |
|                 url = '{{ url('modules/category') }}';
 | |
| 
 | |
|                 var value = $(this).val();
 | |
| 
 | |
|                 if (value) {
 | |
|                     url += '/' + encodeURIComponent(value);
 | |
|                 } else {
 | |
|                     url = '{{ url('modules/home') }}';
 | |
|                 }
 | |
| 
 | |
|                 location = url;
 | |
|             });
 | |
|         });
 | |
|     </script>
 | |
| 
 | |
|     @yield('js')
 | |
| 
 | |
|     @yield('scripts')
 | |
| </head>
 |