pos-gis/resources/views/components/master/head.blade.php
2024-10-08 13:24:47 +07:00

37 lines
1.7 KiB
PHP

<title>global infotech solution - POS</title>
<meta name="csrf-token" content="{{ csrf_token() }}"/>
<meta charset="utf-8">
<meta name="description" content="global infotech solution pos" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="{{ asset('img/gis.png') }}" rel="shortcut icon" />
<link href="{{ asset('css/fonts.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('assets/plugins/custom/fullcalendar/fullcalendar.bundle.min.css?v=7.0.5') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('assets/plugins/custom/datatables/datatables.bundle.min.css?v=7.0.5') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('assets/plugins/global/plugins.bundle.min.css?v=7.0.5') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('assets/plugins/custom/prismjs/prismjs.bundle.min.css?v=7.0.5') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('assets/css/style.bundle.min.css?v=7.0.5') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('assets/validator/bootstrapValidator.min.css')}}" rel="stylesheet" type="text/css" />
<link href="{{ asset('css/myStyle.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('css/darkStyle.css') }}" rel="stylesheet" type="text/css" />
<style>
.zn-bg-texture {
background: url('{{ asset('img/pat19.png') }}');
background-repeat: repeat;
margin-bottom: 0px;
opacity: 1;
}
.zn-bg-texture-dark {
background: url('{{ asset('img/patd1.png') }}') !important;
background-repeat: repeat;
margin-bottom: 0px;
opacity: 1;
}
</style>
@php
$token = csrf_token();
setcookie('XSRF-TOKEN', $token, time()+3600,'','',true,true);
@endphp