@php
$saveCountries = [];
if(!empty($release->country_ids)){
$saveCountries =json_decode($release->country_ids);
}
@endphp
@foreach($counteries as $country)
@php
$checked = false;
if (in_array($country->code, $saveCountries)){
$checked = true;
}
@endphp
@endforeach