17 lines
431 B
PHP
17 lines
431 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta content="" name="description">
|
|
<meta content="" name="keywords">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
@php $css_File = file_get_contents(public_path('/pdf_izvestaji/css/bootstrap.min.css')); @endphp
|
|
<style type="text/css">{!! $css_File; !!}</style>
|
|
@yield("css");
|
|
</head>
|
|
|
|
<body>
|
|
@yield("content")
|
|
</body>
|
|
|
|
</html>
|