Here is my image tag which i want to convert in laravel way
<img src="public/assets/uploads/driver/<?php echo $DriverDetail['DriverPhoto'];?>">
I tried with
{{ HTML::image('public/assets/uploads/driver/', 'Driver Photo', array('class' => 'student-listing-photo')) }}
But how can i give the value $DriverDetail['DriverPhoto']; inside the HTML::image tag.
{{ HTML::image('public/assets/uploads/driver/' . $DriverDetail['DriverPhoto'], 'Driver Photo', array('class' => 'student-listing-photo')) }}?