@php
$android_hdpi_image = getKeyValue('android_hdpi_image');
$has_android_hdpi_image = !empty($android_hdpi_image->photo) && !empty($android_hdpi_image->photo->file_path);
$android_hdpi_image_src = $has_android_hdpi_image ? (Str::startsWith($android_hdpi_image->photo->file_path, ['http://','https://']) ? $android_hdpi_image->photo->file_path
: Storage::url($android_hdpi_image->photo->file_path)) : '';
@endphp
Required size: 720x1280 px
@php
$android_mdpi_image = getKeyValue('android_mdpi_image');
$has_android_mdpi_image = !empty($android_mdpi_image->photo) && !empty($android_mdpi_image->photo->file_path);
$android_mdpi_image_src = $has_android_mdpi_image ? (Str::startsWith($android_mdpi_image->photo->file_path, ['http://','https://']) ? $android_mdpi_image->photo->file_path
: Storage::url($android_mdpi_image->photo->file_path)) : '';
@endphp
Required size: 480x800 px
@php
$android_xhdpi_image = getKeyValue('android_xhdpi_image');
$has_android_xhdpi_image = !empty($android_xhdpi_image->photo) && !empty($android_xhdpi_image->photo->file_path);
$android_xhdpi_image_src = $has_android_xhdpi_image ? (Str::startsWith($android_xhdpi_image->photo->file_path, ['http://','https://']) ? $android_xhdpi_image->photo->file_path
: Storage::url($android_xhdpi_image->photo->file_path)) : '';
@endphp
Required size: 960x1600 px
@php
$android_xxhdpi_image = getKeyValue('android_xxhdpi_image');
$has_android_xxhdpi_image = !empty($android_xxhdpi_image->photo) && !empty($android_xxhdpi_image->photo->file_path);
$android_xxhdpi_image_src = $has_android_xxhdpi_image ? (Str::startsWith($android_xxhdpi_image->photo->file_path, ['http://','https://']) ? $android_xxhdpi_image->photo->file_path
: Storage::url($android_xxhdpi_image->photo->file_path)) : '';
@endphp
Required size: 1440x2560 px