I am using following div in my laravel app and currently I have boarder style now I need color background as red adtype ==1 and other green.
<div style="border-style: solid;
color: {{ $vehicule->adtype === 1 ? 'black' : 'blue' }} ">
<img src="/images/{{ $upload->resized_name }}" height="150" width="250">
</div>
how can I do this?