leenooks/resources/themes/adminlte/views/layouts/partials/htmlheader.blade.php

64 lines
1.8 KiB
PHP
Raw Normal View History

2018-04-23 07:45:21 +00:00
<head>
<meta charset="UTF-8">
2018-08-01 06:28:10 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2018-05-08 05:13:31 +00:00
<title>{{ config('app.name') }} - @yield('htmlheader_title', 'Your title here')</title>
2018-04-23 07:45:21 +00:00
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<link href="{{ asset('/css/all.css') }}" rel="stylesheet" type="text/css" />
<!-- 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.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
@media screen, print {
body {
color: #333;
font-weight: 400;
font-size: 16px;
}
label {
font-weight: bold;
}
}
@media print {
body {
font-size: 12px;
}
tr { page-break-inside:avoid; }
thead { display:table-header-group; }
tfoot { display:table-footer-group; }
.table-responsive {
overflow: visible !important;
}
}
2018-08-01 06:28:10 +00:00
</style>
2018-04-23 07:45:21 +00:00
<script>
//See https://laracasts.com/discuss/channels/vue/use-trans-in-vuejs
window.trans =
@php
// copy all translations from /resources/lang/CURRENT_LOCALE/* to global JS variable
$lang_files = File::files(resource_path() . '/lang/' . App::getLocale());
$trans = [];
foreach ($lang_files as $f) {
$filename = pathinfo($f)['filename'];
$trans[$filename] = trans($filename);
}
$trans['adminlte_lang_message'] = trans('adminlte_lang::message');
echo json_encode($trans);
@endphp
</script>
<!-- STYLESHEETS -->
{!! Asset::styles() !!}
2018-08-01 06:28:10 +00:00
</head>