2016-08-02 10 views

答えて

0

あなたが試すことができ、この

{!! Html::image(url('/dist/images/t1.png'),'',['class'=>'img-rounded']) !!} 

または

{!! Html::image(URL::asset('/dist/images/t1.png'),'',['class'=>'img-rounded']) !!} 
1

をお試しください:

{!! Html::image(asset('/dist/images/t1.png'), '', ['class'=>'img-rounded']) !!} 
関連する問題