2022-03-08 16:42:27 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
2022-05-17 06:57:47 -07:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2022-05-18 11:09:46 -07:00
|
|
|
font-size: 11px;
|
2022-05-17 06:57:47 -07:00
|
|
|
}
|
|
|
|
</style>
|
2022-03-08 16:42:27 -08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2022-05-19 11:27:56 -07:00
|
|
|
@if ($logo)
|
2022-03-08 16:42:27 -08:00
|
|
|
<center>
|
|
|
|
<img src="{{ $logo }}">
|
2022-03-21 09:18:29 -07:00
|
|
|
<p>{{$company_name}}</p>
|
2022-03-08 16:42:27 -08:00
|
|
|
</center>
|
|
|
|
@endif
|
|
|
|
<br>
|
|
|
|
|
2022-05-17 06:57:47 -07:00
|
|
|
<p>
|
|
|
|
{{ trans('general.date') }}: {{ date($date_settings) }} <br>
|
|
|
|
{{ trans('general.asset_tag') }}: {{ $item_tag }}<br>
|
|
|
|
{{ trans('general.asset_model') }}: {{ $item_model }}<br>
|
2022-05-19 11:27:56 -07:00
|
|
|
{{ trans('admin/hardware/form.serial') }}: {{ $item_serial }}</p>
|
2022-05-17 06:57:47 -07:00
|
|
|
|
|
|
|
|
2022-03-08 16:42:27 -08:00
|
|
|
@if ($eula)
|
2022-05-17 06:57:47 -07:00
|
|
|
<hr>
|
2022-03-08 16:42:27 -08:00
|
|
|
{!! $eula !!}
|
2022-05-17 06:57:47 -07:00
|
|
|
<hr>
|
2022-03-08 16:42:27 -08:00
|
|
|
@endif
|
|
|
|
|
2022-03-21 09:18:29 -07:00
|
|
|
|
2022-05-17 06:57:47 -07:00
|
|
|
<p>
|
|
|
|
Assigned on: {{$check_out_date}}<br>
|
|
|
|
Assigned to: {{$assigned_to}}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2022-03-08 16:42:27 -08:00
|
|
|
@if ($signature)
|
2022-05-17 06:57:47 -07:00
|
|
|
<div style="width: 60%; float:left">
|
|
|
|
<img src="{{ $signature }}" style="max-width: 100%; border-bottom: black solid 1px;"><br>
|
2022-05-17 07:27:03 -07:00
|
|
|
{{ trans('general.signature') }}: {{$accepted_date}}
|
2022-05-17 06:57:47 -07:00
|
|
|
</div>
|
2022-03-08 16:42:27 -08:00
|
|
|
@endif
|
|
|
|
</body>
|
|
|
|
</html>
|