<table class="data" id="content">
<tr>
	<th align="center"><b>No.</b></th>
	<th align="center"><b>Notes</b></th>
	<th align="center"><b>Track Id</b></th>
	<th align="center"><b>Track Name</b></th>
	<th align="center"><b>ISRC</b></th>
	<th align="center"><b>UPC</b></th>
	<th align="center"><b>Delivered Status</b></th>
	<th align="center"><b>File Name</b></th>
	<th align="center"><b>Archive Location</b></th>
</tr>
<?php
$count = 0;
if(count($this->exportLogdetails ?? []) > 0){
	foreach($this->exportLogdetails as $eachLogdetails){
		$serialNo = ($this->page -1)* $this->pageRecord +($count+1);?>
		<tr>
			<td><?php echo $serialNo;?></td>
			<td><?php echo $eachLogdetails->notes;?></td>
			<td><?php echo $eachLogdetails->trackId;?></td>
			<td><?php echo $eachLogdetails->trackName;?></td>
			<td><?php echo $eachLogdetails->isrc;?></td>
			<td><?php echo $eachLogdetails->displayUpc;?></td>
			<td><?php echo $eachLogdetails->delivered_status;?></td>
			<td><?php echo $eachLogdetails->fileName;?></td>
			<td><?php echo $eachLogdetails->archiveLocation;?></td>
		</tr>
<?php
	$count ++;
	}
}else{?>
	<tr><td colspan="9" align="center">No Data Found.</td></tr>
<?php } ?>
</table>
