resolved conflicts

This commit is contained in:
2025-03-31 03:46:05 +03:00
6454 changed files with 1520539 additions and 9 deletions
@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/png" sizes="16x16"
href="{{ asset('uploads/streamline/color/streamline_icon-02.png') }}">
<title>{{ config('app.name', 'Stre@mline') }}</title>
<!-- Bootstrap Core CSS -->
<link href="{{ asset('bootstrap/css/bootstrap.min.css') }}" rel="stylesheet">
<style>
body {
/*font-size: 1.2em;*/
}
thead {
/*display: table-header-group;*/
}
tfoot {
/*display: table-row-group;*/
}
tr {
page-break-inside: avoid;
}
.parent_container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
</head>
<body>
{{-- <div class="parent_container"> --}}
<div class="container-fluid">
@include('layouts.header_pdf_print')
{{-- maaternity admission details --}}
@include('maternity::maternity.includes.maternity_admission_details')
@if (is_add_stamp_feature_enabled() && !empty($hospital_info->stamp))
<table class="table table-borderless">
<tbody>
<tr>
<td style="text-align: center">
<img style="max-width: 300px; max-height: 150px;"
src="{{ asset($hospital_info->stamp) }}" class="img-fluid mx-auto d-block mx-3"
alt="{{ $hospital_info->name }} stamp">
</td>
</tr>
</tbody>
</table>
@endif
{{-- </div> --}}
</div>
</body>
</html>