Hi @abdulbazith,
I'm not 100% sure but is this what you want?
<?php
$pursSplit = array_chunk($purs , round(count($purs) / 2));
?>
<table width="100%;border:0;">
<tr>
<td>
<table id="design">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>R/L</th>
<th>No.of.Lit(Lt)</th>
<th>Total(Rs)</th>
<th>Note</th>
</tr>
</thead>
<tbody>
@foreach($pursSplit[0] as $pur)
<tr>
<td>{{ $pur->date->format('d-m-y') }}</td>
<td>{{ $pur->time }}</td>
<td>{{ $pur->rate_per_litre }}</td>
<td align="right">{{ $pur->no_of_litre }}</td>
<td align="right">{{ $pur->total }}</td>
<td>{{ $pur->note }}</td>
</tr>
@endforeach
</tbody>
</table>
</td>
<td>
<table id="design">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>R/L</th>
<th>No.of.Lit(Lt)</th>
<th>Total(Rs)</th>
<th>Note</th>
</tr>
</thead>
<tbody>
@foreach($pursSplit[1] as $pur)
<tr>
<td>{{ $pur->date->format('d-m-y') }}</td>
<td>{{ $pur->time }}</td>
<td>{{ $pur->rate_per_litre }}</td>
<td align="right">{{ $pur->no_of_litre }}</td>
<td align="right">{{ $pur->total }}</td>
<td>{{ $pur->note }}</td>
</tr>
@endforeach
</tbody>
</table>
</td>
</tr>
</table>