IMMREX7
<!DOCTYPE html>
<html>
<head>
<!-- <meta charset="utf-8"> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>School MIS</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
<style type="text/css">
@page {
header: page-header;
footer: page-footer;
margin-top: 20pt;
margin-bottom: 10px;
}
section{
}
body {
font-family: 'examplefont', sans-serif;
}
</style>
</head>
<body>
<!--<htmlpageheader name="page-header" >-->
<table class="table">
<tbody>
<tr>
<td style="vertical-align: middle;text-align: left; width: 25%; padding: 0px; ">
<img src="<?php echo e(asset('storage/schools/'.$school->idSchool.'/'.$school->schoolLogo)); ?>" height="90" width="90">
<!--<br>-->
<strong><?php echo e($school->schoolName); ?></strong><br>
<?php echo e($school->street); ?> <?php echo e($school->landmark); ?> <?php echo e($school->subArea); ?> <?php echo e($school->area); ?> <br>
<?php echo e($school->city); ?> <?php echo e($school->state->stateName); ?><br>
<strong>Contact No : <?php echo e($school->mobile); ?></strong><br>
<strong>Email : <?php echo e($school->email); ?></strong><br>
</td>
<th style="vertical-align: middle;text-align: right; width: 40%; padding: 0px; font-size: 30px;">
Quotation <br>
<br>
</th>
</tr>
</tbody>
</table>
<!--</htmlpageheader>-->
<section>
<div class="content">
<p></p>
<p style="font-weight: bold;">Vendor Details</p>
<p style="color:blue; font-weight: bold;"><?php echo e($quotation->supplier->bussinessName); ?></p>
<br>
<table class="table">
<tbody>
<tr>
<td style="vertical-align: middle; width: 25%; padding: 0px; ">
<strong>Deliver TO : </strong><br>
<?php echo e($school->schoolName); ?><br>
<?php echo e($school->street); ?> <?php echo e($school->landmark); ?> <?php echo e($school->subArea); ?> <?php echo e($school->area); ?> <br>
<?php echo e($school->city); ?> <?php echo e($school->state->stateName); ?><br>
</td>
<td style="vertical-align: middle; width: 35%; padding-left: 50px;text-align: right;">
Shipment Preference : <?php echo e($quotation->purchasePreference); ?><br><br>
Delivery Date : <?php echo e($quotation->purchaseDate); ?>
</td>
</tr>
</tbody>
</table>
<br>
<table border="1" style="width:100% ;border-collapse: collapse;overflow: wrap;">
<thead>
<tr style="border: 1px solid black;background:#A9A9A9; ">
<th style="border: 1px solid black;padding: 10px;">#</th>
<th style="border: 1px solid black;">Item & Description</th>
<th style="border: 1px solid black;">Quantity</th>
</tr>
</thead>
<tbody>
<?php $i = 1; ?>
<?php $__currentLoopData = $quotation->details; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $det): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td style="padding: 10px;"><?php echo e($i); ?></td>
<td style="text-align: center;"><?php echo e($det->product->productName); ?><br><?php echo e($det->product->remarks); ?></td>
<td style="text-align: center;"><?php echo e($det->quantity); ?></td>
</tr>
<?php $i++; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<tr>
<td colspan="2" style="vertical-align: bottom; text-align: center;">
Authorized Signature
</td>
</tr>
</tbody>
</table>
</div>
</section>
<htmlpagefooter name="page-footer" >
</htmlpagefooter>
</body>
</html>
Copyright © 2021 -