@if (file_exists(env('BASE_URL_MASTER').$p->main_image))
<img class="primary-img" src="{{env('BASE_URL_MASTER').$p->main_image}}" alt="single-product" height="200px" width="400px">
@else
<img class="primary-img" src="{{asset($p->main_image?$p->main_image:'')}}" alt="single-product" height="200px" width="400px">
endif
I want to check whether given URL has Image if image is available then @if
condition should work. but its not working