I am using Laravel plugin Laravel Excel to load view directly into excel sheet. Everything goes fine. But while using image in my view, error prompts saying the full url of the image not found. Error is:
PHPExcel_Exception
File http://example.com/client1_site/public/uploads/patients/23/first-patient-photo.jpg not found!
But the url exists and it displays the proper image.
I have following html in my view:
<td>
@if(!is_null($s->photo))
<img src="{{URL::to($s->photo)}}" style="width:90px;height:85px;" alt=""/>
@endif
</td>
Anyone having embedded image in excel using the laravel-excel plugin experienced the same?