Update Revisi Hospital Portal
This commit is contained in:
@@ -98,6 +98,7 @@ class MemberController extends Controller
|
|||||||
|
|
||||||
// Provider
|
// Provider
|
||||||
$providers = DB::table('organizations')
|
$providers = DB::table('organizations')
|
||||||
|
->where('organizations.type', '=', 'hospital')
|
||||||
->select(
|
->select(
|
||||||
'organizations.id',
|
'organizations.id',
|
||||||
'organizations.name'
|
'organizations.name'
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ class RequestLogController extends Controller
|
|||||||
$organization_id = DB::table('organizations')
|
$organization_id = DB::table('organizations')
|
||||||
->insertGetId([
|
->insertGetId([
|
||||||
'name' => $request->name_provider,
|
'name' => $request->name_provider,
|
||||||
'code' => $request->name_provider,
|
'type' => 'hospital',
|
||||||
'created_at' => now(),
|
'created_at' => now(),
|
||||||
'created_by' => auth()->user()->id
|
'created_by' => auth()->user()->id
|
||||||
]);
|
]);
|
||||||
@@ -74,7 +74,8 @@ class RequestLogController extends Controller
|
|||||||
->insertGetId([
|
->insertGetId([
|
||||||
'text'=> $request->address_provider,
|
'text'=> $request->address_provider,
|
||||||
'addressable_type' => 'App\Models\Organization',
|
'addressable_type' => 'App\Models\Organization',
|
||||||
'addressable_id' => $organization_id,
|
'addressable_id' => $organization_id,
|
||||||
|
'type' => 'hospital',
|
||||||
'created_at' => now(),
|
'created_at' => now(),
|
||||||
'created_by' => auth()->user()->id
|
'created_by' => auth()->user()->id
|
||||||
]);
|
]);
|
||||||
@@ -350,6 +351,7 @@ class RequestLogController extends Controller
|
|||||||
$dataMember = DB::table('members')
|
$dataMember = DB::table('members')
|
||||||
->where('members.id', '=', $dataRequestLog->member_id)
|
->where('members.id', '=', $dataRequestLog->member_id)
|
||||||
->select(
|
->select(
|
||||||
|
'members.id',
|
||||||
'members.principal_id',
|
'members.principal_id',
|
||||||
'members.name',
|
'members.name',
|
||||||
'members.birth_date',
|
'members.birth_date',
|
||||||
@@ -363,9 +365,9 @@ class RequestLogController extends Controller
|
|||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select corporates.name FROM corporates
|
(Select corporates.name FROM corporates
|
||||||
INNER JOIN corporate_employees ON corporate_employees.corporate_id = corporates.id
|
LEFT JOIN corporate_employees ON corporate_employees.corporate_id = corporates.id
|
||||||
WHERE corporate_employees.member_id = members.id LIMIT 1) AS nama_perusahaan
|
WHERE corporate_employees.member_id = members.id LIMIT 1) AS nama_perusahaan
|
||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select services.name FROM services
|
(Select services.name FROM services
|
||||||
WHERE services.code = "'.$dataRequestLog->service_code.'" LIMIT 1) AS jenis_perwatan
|
WHERE services.code = "'.$dataRequestLog->service_code.'" LIMIT 1) AS jenis_perwatan
|
||||||
@@ -378,12 +380,12 @@ class RequestLogController extends Controller
|
|||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select plans.code FROM member_plans
|
(Select plans.code FROM member_plans
|
||||||
INNER JOIN plans ON plans.id = member_plans.plan_id
|
LEFT JOIN plans ON plans.id = member_plans.plan_id
|
||||||
WHERE member_plans.member_id = members.id LIMIT 1) AS code_plan
|
WHERE member_plans.member_id = members.id LIMIT 1) AS code_plan
|
||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select plans.limit_rules FROM member_plans
|
(Select plans.limit_rules FROM member_plans
|
||||||
INNER JOIN plans ON plans.id = member_plans.plan_id
|
LEFT JOIN plans ON plans.id = member_plans.plan_id
|
||||||
WHERE member_plans.member_id = members.id LIMIT 1) AS limit_rules
|
WHERE member_plans.member_id = members.id LIMIT 1) AS limit_rules
|
||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
@@ -399,7 +401,6 @@ class RequestLogController extends Controller
|
|||||||
$dataNamaKaryawan = DB::table('members')
|
$dataNamaKaryawan = DB::table('members')
|
||||||
->where('members.member_id', '=', $dataMember->principal_id)
|
->where('members.member_id', '=', $dataMember->principal_id)
|
||||||
->select('members.name')
|
->select('members.name')
|
||||||
->limit(1)
|
|
||||||
->first();
|
->first();
|
||||||
$data['namaKaryawan'] = $dataNamaKaryawan->name;
|
$data['namaKaryawan'] = $dataNamaKaryawan->name;
|
||||||
}
|
}
|
||||||
@@ -411,24 +412,26 @@ class RequestLogController extends Controller
|
|||||||
|
|
||||||
$data['request_logs'] = $dataRequestLog;
|
$data['request_logs'] = $dataRequestLog;
|
||||||
|
|
||||||
$dataRumahSakit = DB::table('users')
|
$dataRumahSakit = DB::table('organizations')
|
||||||
->where('users.id', '=', $dataRequestLog->created_by)
|
->leftJoin('addresses', 'addresses.addressable_id', '=', 'organizations.id')
|
||||||
->select(
|
->where('organizations.id', '=', $dataRequestLog->organization_id)
|
||||||
'*',
|
->where('addresses.addressable_type', '=', 'App\Models\Organization')
|
||||||
DB::raw('
|
->select('organizations.name AS nama_rumahsakit', 'addresses.text AS alamat_rumahsakit')
|
||||||
(Select organizations.name FROM organizations
|
|
||||||
WHERE organizations.id = users.organization_id LIMIT 1) AS nama_rumahsakit
|
|
||||||
'),
|
|
||||||
DB::raw('
|
|
||||||
(Select addresses.text FROM organizations
|
|
||||||
INNER JOIN addresses ON addresses.id = organizations.main_address_id
|
|
||||||
WHERE organizations.id = users.organization_id LIMIT 1) AS alamat_rumahsakit
|
|
||||||
')
|
|
||||||
)
|
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
$data['rumahSakit'] = $dataRumahSakit;
|
$data['rumahSakit'] = $dataRumahSakit;
|
||||||
|
|
||||||
|
$logoPerusahaan = DB::table('files')
|
||||||
|
->leftJoin('corporate_employees', 'corporate_employees.corporate_id', '=', 'files.fileable_id')
|
||||||
|
->leftJoin('corporates', 'corporate_employees.corporate_id', '=', 'corporates.id')
|
||||||
|
->where('corporate_employees.member_id', '=', $dataMember->id)
|
||||||
|
->where('files.fileable_type', '=', 'App\Models\Corporate')
|
||||||
|
->select('files.path', 'corporates.code', 'corporates.name')
|
||||||
|
->orderBy('files.id', 'desc')
|
||||||
|
->first();
|
||||||
|
|
||||||
|
$data['logoPerusahaan'] = $logoPerusahaan;
|
||||||
|
|
||||||
$pdf = new Dompdf();
|
$pdf = new Dompdf();
|
||||||
|
|
||||||
$options = new Options();
|
$options = new Options();
|
||||||
@@ -468,6 +471,7 @@ class RequestLogController extends Controller
|
|||||||
$dataMember = DB::table('members')
|
$dataMember = DB::table('members')
|
||||||
->where('members.id', '=', $dataRequestLog->member_id)
|
->where('members.id', '=', $dataRequestLog->member_id)
|
||||||
->select(
|
->select(
|
||||||
|
'members.id',
|
||||||
'members.principal_id',
|
'members.principal_id',
|
||||||
'members.name',
|
'members.name',
|
||||||
'members.birth_date',
|
'members.birth_date',
|
||||||
@@ -481,7 +485,7 @@ class RequestLogController extends Controller
|
|||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select corporates.name FROM corporates
|
(Select corporates.name FROM corporates
|
||||||
INNER JOIN corporate_employees ON corporate_employees.corporate_id = corporates.id
|
LEFT JOIN corporate_employees ON corporate_employees.corporate_id = corporates.id
|
||||||
WHERE corporate_employees.member_id = members.id LIMIT 1) AS nama_perusahaan
|
WHERE corporate_employees.member_id = members.id LIMIT 1) AS nama_perusahaan
|
||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
@@ -496,12 +500,12 @@ class RequestLogController extends Controller
|
|||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select plans.code FROM member_plans
|
(Select plans.code FROM member_plans
|
||||||
INNER JOIN plans ON plans.id = member_plans.plan_id
|
LEFT JOIN plans ON plans.id = member_plans.plan_id
|
||||||
WHERE member_plans.member_id = members.id LIMIT 1) AS code_plan
|
WHERE member_plans.member_id = members.id LIMIT 1) AS code_plan
|
||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
(Select plans.limit_rules FROM member_plans
|
(Select plans.limit_rules FROM member_plans
|
||||||
INNER JOIN plans ON plans.id = member_plans.plan_id
|
LEFT JOIN plans ON plans.id = member_plans.plan_id
|
||||||
WHERE member_plans.member_id = members.id LIMIT 1) AS limit_rules
|
WHERE member_plans.member_id = members.id LIMIT 1) AS limit_rules
|
||||||
'),
|
'),
|
||||||
DB::raw('
|
DB::raw('
|
||||||
@@ -542,24 +546,27 @@ class RequestLogController extends Controller
|
|||||||
|
|
||||||
$data['dataClaimLog'] = $dataClaimLog;
|
$data['dataClaimLog'] = $dataClaimLog;
|
||||||
|
|
||||||
$dataRumahSakit = DB::table('users')
|
|
||||||
->where('users.id', '=', $dataRequestLog->created_by)
|
$dataRumahSakit = DB::table('organizations')
|
||||||
->select(
|
->leftJoin('addresses', 'addresses.addressable_id', '=', 'organizations.id')
|
||||||
'*',
|
->where('organizations.id', '=', $dataRequestLog->organization_id)
|
||||||
DB::raw('
|
->where('addresses.addressable_type', '=', 'App\Models\Organization')
|
||||||
(Select organizations.name FROM organizations
|
->select('organizations.name AS nama_rumahsakit', 'addresses.text AS alamat_rumahsakit')
|
||||||
WHERE organizations.id = users.organization_id LIMIT 1) AS nama_rumahsakit
|
|
||||||
'),
|
|
||||||
DB::raw('
|
|
||||||
(Select addresses.text FROM organizations
|
|
||||||
INNER JOIN addresses ON addresses.id = organizations.main_address_id
|
|
||||||
WHERE organizations.id = users.organization_id LIMIT 1) AS alamat_rumahsakit
|
|
||||||
')
|
|
||||||
)
|
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
$data['rumahSakit'] = $dataRumahSakit;
|
$data['rumahSakit'] = $dataRumahSakit;
|
||||||
|
|
||||||
|
$logoPerusahaan = DB::table('files')
|
||||||
|
->leftJoin('corporate_employees', 'corporate_employees.corporate_id', '=', 'files.fileable_id')
|
||||||
|
->leftJoin('corporates', 'corporate_employees.corporate_id', '=', 'corporates.id')
|
||||||
|
->where('corporate_employees.member_id', '=', $dataMember->id)
|
||||||
|
->where('files.fileable_type', '=', 'App\Models\Corporate')
|
||||||
|
->select('files.path', 'corporates.code', 'corporates.name')
|
||||||
|
->orderBy('files.id', 'desc')
|
||||||
|
->first();
|
||||||
|
|
||||||
|
$data['logoPerusahaan'] = $logoPerusahaan;
|
||||||
|
|
||||||
$pdf = new Dompdf();
|
$pdf = new Dompdf();
|
||||||
|
|
||||||
$options = new Options();
|
$options = new Options();
|
||||||
|
|||||||
@@ -15,10 +15,10 @@ const MENU_OPTIONS = [
|
|||||||
label: 'Home',
|
label: 'Home',
|
||||||
linkTo: '/',
|
linkTo: '/',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
label: 'Profile',
|
// label: 'Profile',
|
||||||
linkTo: '/profile',
|
// linkTo: '/profile',
|
||||||
},
|
// },
|
||||||
// {
|
// {
|
||||||
// label: 'Settings',
|
// label: 'Settings',
|
||||||
// linkTo: '/',
|
// linkTo: '/',
|
||||||
@@ -65,8 +65,8 @@ export default function AccountPopover() {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Avatar
|
<Avatar
|
||||||
src="https://minimal-assets-api.vercel.app/assets/images/avatars/avatar_5.jpg"
|
src=""
|
||||||
alt="Rayan Moran"
|
alt="Hospital Portal"
|
||||||
/>
|
/>
|
||||||
</IconButtonAnimate>
|
</IconButtonAnimate>
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ export default function DashboardHeader({
|
|||||||
</IconButtonAnimate>
|
</IconButtonAnimate>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Searchbar />
|
{/* <Searchbar /> */}
|
||||||
<Box sx={{ flexGrow: 1 }} />
|
<Box sx={{ flexGrow: 1 }} />
|
||||||
|
|
||||||
<Stack direction="row" alignItems="center" spacing={{ xs: 0.5, sm: 1.5 }}>
|
<Stack direction="row" alignItems="center" spacing={{ xs: 0.5, sm: 1.5 }}>
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ import { DocIllustration } from '@/assets';
|
|||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
export default function NavbarDocs() {
|
export default function NavbarDocs() {
|
||||||
|
const handleClick = () => {
|
||||||
|
window.location.href = 'https://wa.me/6285890008500';
|
||||||
|
};
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Stack
|
<Stack
|
||||||
@@ -20,12 +23,12 @@ export default function NavbarDocs() {
|
|||||||
</Typography>
|
</Typography>
|
||||||
<Typography variant="body2" sx={{ color: 'text.secondary' }}>
|
<Typography variant="body2" sx={{ color: 'text.secondary' }}>
|
||||||
Need help?
|
Need help?
|
||||||
<br /> Please check our docs
|
<br /> Please contact Us at
|
||||||
</Typography>
|
</Typography>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Button variant="contained">Documentation</Button>
|
<Button variant="contained" onClick={handleClick}>WhatsApp</Button>
|
||||||
<Typography variant='body2'>Hak Cipta © 2023 - 2024 Link Sehat</Typography>
|
<Typography variant='body2'>Hak Cipta © 2023 - 2024 LinkSehat</Typography>
|
||||||
</Stack>
|
</Stack>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -41,8 +41,8 @@ export default function LoginForm() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const defaultValues = {
|
const defaultValues = {
|
||||||
email: 'hospitaladmin@gmail.com',
|
email: '',
|
||||||
password: 'password',
|
password: '',
|
||||||
remember: true,
|
remember: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -58,8 +58,12 @@ export default function FormRequestClaim({ member, handleSubmitSuccess }: FormRe
|
|||||||
.post('/request-log', formData)
|
.post('/request-log', formData)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
if (response && response.data && response.data.meta) {
|
if (response && response.data && response.data.meta) {
|
||||||
|
setTimeout(() => {
|
||||||
|
window.location.reload();
|
||||||
|
}, 1500);
|
||||||
enqueueSnackbar(response.data.meta.message, { variant: 'success' });
|
enqueueSnackbar(response.data.meta.message, { variant: 'success' });
|
||||||
handleSubmitSuccess();
|
handleSubmitSuccess();
|
||||||
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(({ response }) => {
|
.catch(({ response }) => {
|
||||||
@@ -176,7 +180,7 @@ export default function FormRequestClaim({ member, handleSubmitSuccess }: FormRe
|
|||||||
<Card sx={{ p: 1, background: '#f4f6f8'}}>
|
<Card sx={{ p: 1, background: '#f4f6f8'}}>
|
||||||
<Stack direction="row">
|
<Stack direction="row">
|
||||||
<Avatar
|
<Avatar
|
||||||
src="https://minimal-assets-api.vercel.app/assets/images/avatars/avatar_5.jpg"
|
src=""
|
||||||
alt={member?.members.name ?? ''}
|
alt={member?.members.name ?? ''}
|
||||||
sx={{ marginTop: 1, width: 48, height: 48 }}
|
sx={{ marginTop: 1, width: 48, height: 48 }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 8.1 KiB |
@@ -178,12 +178,12 @@
|
|||||||
right: 10px;
|
right: 10px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.logo_vale-<?php echo now()->timestamp; ?> {
|
.logo_company-<?php echo now()->timestamp; ?> {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: -35.12px;
|
top: -35.12px;
|
||||||
left: -35.91px;
|
left: -35.91px;
|
||||||
width: 10%;
|
width: 10%;
|
||||||
max-width: 400px; /* batasan lebar maksimum gambar */
|
max-width: 40px; /* batasan lebar maksimum gambar */
|
||||||
margin-top: 1px; /* jarak antara segitiga dan gambar */
|
margin-top: 1px; /* jarak antara segitiga dan gambar */
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
@@ -192,7 +192,12 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="triangle2"></div>
|
<div class="triangle2"></div>
|
||||||
<div class="triangle1"></div>
|
<div class="triangle1"></div>
|
||||||
<img class="logo_vale-<?php echo now()->timestamp; ?>" src="data:image/png;base64,{{ base64_encode(file_get_contents(public_path('images/vale_logo.png'))) }}">
|
@php
|
||||||
|
if($logoPerusahaan->path) {
|
||||||
|
$imgSrc = 'data:image/png;base64,' . base64_encode(file_get_contents(storage_path('app/public/' . $logoPerusahaan->path)));
|
||||||
|
echo '<img class="logo_company-' . now()->timestamp . '" src="' . $imgSrc . '">';
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
<div class="content-<?php echo now()->timestamp; ?>">
|
<div class="content-<?php echo now()->timestamp; ?>">
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> top-right-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> top-right-<?php echo now()->timestamp; ?>">
|
||||||
The Future Of Healthcare At Your Fingertips
|
The Future Of Healthcare At Your Fingertips
|
||||||
@@ -374,9 +379,33 @@
|
|||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-<?php echo now()->timestamp; ?>">
|
||||||
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
@php
|
||||||
<b>PT. Vale Indonesia Tbk. Makassar Representative Office</b><br>
|
if ($logoPerusahaan->code === 'VALEIND') {
|
||||||
Lt. 1, Jalan Somba Opu 281, Ujung Pandang, Losari, <br> Kec. Makassar, Kota Makassar, Sulawesi Selatan 90113
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
Lt. 1, Jalan Somba Opu 281, Ujung Pandang, Losari, <br> Kec. Makassar, Kota Makassar, Sulawesi Selatan 90113
|
||||||
|
|
||||||
|
@php
|
||||||
|
} else if($logoPerusahaan->code === 'PETROLAB') {
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
Jalan Pisangan Lama 3 Nomor 28 Jatinegara, RT.9/RW.3, <br>Pisangan Tim., Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus Ibukota Jakarta 13230
|
||||||
|
|
||||||
|
@php
|
||||||
|
} else {
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
|
||||||
|
|
||||||
|
@php
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-<?php echo now()->timestamp; ?>">
|
||||||
<b>PT Link Medis Sehat</b><br>
|
<b>PT Link Medis Sehat</b><br>
|
||||||
|
|||||||
@@ -244,10 +244,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-1-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-1-<?php echo now()->timestamp; ?> ">
|
||||||
Hormat Kami,<br>
|
Hormat Kami,<br>
|
||||||
PT. Vale Indonesia Tbk
|
{{ $dataMember->nama_perusahaan }}
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-<?php echo now()->timestamp; ?> ">
|
||||||
<u> Dr. Hery Hermas, M.Kes</u><br>
|
(.......................................)<br>
|
||||||
Offsite Medical Treatment
|
Offsite Medical Treatment
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-1-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-1-<?php echo now()->timestamp; ?> ">
|
||||||
@@ -255,7 +255,7 @@
|
|||||||
Petugas Alarm Center
|
Petugas Alarm Center
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-<?php echo now()->timestamp; ?> ">
|
||||||
<u>(Nama Petugas)</u><br>
|
(.......................................)<br>
|
||||||
Customer Service Team
|
Customer Service Team
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left1-ttd-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left1-ttd-<?php echo now()->timestamp; ?> ">
|
||||||
@@ -265,9 +265,33 @@
|
|||||||
{{ $dataMember->name }}
|
{{ $dataMember->name }}
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-<?php echo now()->timestamp; ?>">
|
||||||
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
@php
|
||||||
<b>PT. Vale Indonesia Tbk. Makassar Representative Office</b><br>
|
if ($logoPerusahaan->code === 'VALEIND') {
|
||||||
Lt. 1, Jalan Somba Opu 281, Ujung Pandang, Losari, <br> Kec. Makassar, Kota Makassar, Sulawesi Selatan 90113
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
Lt. 1, Jalan Somba Opu 281, Ujung Pandang, Losari, <br> Kec. Makassar, Kota Makassar, Sulawesi Selatan 90113
|
||||||
|
|
||||||
|
@php
|
||||||
|
} else if($logoPerusahaan->code === 'PETROLAB') {
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
Jalan Pisangan Lama 3 Nomor 28 Jatinegara, RT.9/RW.3, <br>Pisangan Tim., Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus Ibukota Jakarta 13230
|
||||||
|
|
||||||
|
@php
|
||||||
|
} else {
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
|
||||||
|
|
||||||
|
@php
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-<?php echo now()->timestamp; ?>">
|
||||||
<b>PT Link Medis Sehat</b><br>
|
<b>PT Link Medis Sehat</b><br>
|
||||||
|
|||||||
@@ -178,12 +178,12 @@
|
|||||||
right: 10px;
|
right: 10px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.logo_vale-<?php echo now()->timestamp; ?> {
|
.logo_company-<?php echo now()->timestamp; ?> {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: -35.12px;
|
top: -35.12px;
|
||||||
left: -35.91px;
|
left: -35.91px;
|
||||||
width: 10%;
|
width: 10%;
|
||||||
max-width: 400px; /* batasan lebar maksimum gambar */
|
max-width: 40px; /* batasan lebar maksimum gambar */
|
||||||
margin-top: 1px; /* jarak antara segitiga dan gambar */
|
margin-top: 1px; /* jarak antara segitiga dan gambar */
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
@@ -192,7 +192,12 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="triangle2"></div>
|
<div class="triangle2"></div>
|
||||||
<div class="triangle1"></div>
|
<div class="triangle1"></div>
|
||||||
<img class="logo_vale-<?php echo now()->timestamp; ?>" src="data:image/png;base64,{{ base64_encode(file_get_contents(public_path('images/vale_logo.png'))) }}">
|
@php
|
||||||
|
if($logoPerusahaan->path) {
|
||||||
|
$imgSrc = 'data:image/png;base64,' . base64_encode(file_get_contents(storage_path('app/public/' . $logoPerusahaan->path)));
|
||||||
|
echo '<img class="logo_company-' . now()->timestamp . '" src="' . $imgSrc . '">';
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
<div class="content-<?php echo now()->timestamp; ?>">
|
<div class="content-<?php echo now()->timestamp; ?>">
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> top-right-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> top-right-<?php echo now()->timestamp; ?>">
|
||||||
The Future Of Healthcare At Your Fingertips
|
The Future Of Healthcare At Your Fingertips
|
||||||
@@ -367,10 +372,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-1-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-1-<?php echo now()->timestamp; ?> ">
|
||||||
Hormat Kami,<br>
|
Hormat Kami,<br>
|
||||||
PT. Vale Indonesia Tbk
|
{{ $dataMember->nama_perusahaan }}
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-ttd-<?php echo now()->timestamp; ?> ">
|
||||||
<u> Dr. Hery Hermas, M.Kes</u><br>
|
(.......................................)<br>
|
||||||
Offsite Medical Treatment
|
Offsite Medical Treatment
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-1-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-1-<?php echo now()->timestamp; ?> ">
|
||||||
@@ -378,16 +383,40 @@
|
|||||||
Petugas Alarm Center
|
Petugas Alarm Center
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-ttd-<?php echo now()->timestamp; ?> ">
|
||||||
<u>(Nama Petugas)</u><br>
|
(.......................................)<br>
|
||||||
Customer Service Team
|
Customer Service Team
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right1-ttd-<?php echo now()->timestamp; ?> ">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right1-ttd-<?php echo now()->timestamp; ?> ">
|
||||||
{{ $dataMember->name }}
|
{{ $dataMember->name }}
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-left-<?php echo now()->timestamp; ?>">
|
||||||
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
@php
|
||||||
<b>PT. Vale Indonesia Tbk. Makassar Representative Office</b><br>
|
if ($logoPerusahaan->code === 'VALEIND') {
|
||||||
Lt. 1, Jalan Somba Opu 281, Ujung Pandang, Losari, <br> Kec. Makassar, Kota Makassar, Sulawesi Selatan 90113
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
Lt. 1, Jalan Somba Opu 281, Ujung Pandang, Losari, <br> Kec. Makassar, Kota Makassar, Sulawesi Selatan 90113
|
||||||
|
|
||||||
|
@php
|
||||||
|
} else if($logoPerusahaan->code === 'PETROLAB') {
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
Jalan Pisangan Lama 3 Nomor 28 Jatinegara, RT.9/RW.3, <br>Pisangan Tim., Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus Ibukota Jakarta 13230
|
||||||
|
|
||||||
|
@php
|
||||||
|
} else {
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<b>Alarm Center Vale MKS (LinkSehat) Office</b><br>
|
||||||
|
<b>{{ $logoPerusahaan->name }}</b><br>
|
||||||
|
|
||||||
|
|
||||||
|
@php
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
</div>
|
</div>
|
||||||
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-<?php echo now()->timestamp; ?>">
|
<div class="corner-text-<?php echo now()->timestamp; ?> bottom-right-<?php echo now()->timestamp; ?>">
|
||||||
<b>PT Link Medis Sehat</b><br>
|
<b>PT Link Medis Sehat</b><br>
|
||||||
|
|||||||
Reference in New Issue
Block a user