@extends('layouts.admin') @section('title') Admin | Banners @endsection @section('content')
@csrf

Splash Screen

iOS Splash Screen Uploads
@php $ios_iphone_image = getKeyValue('ios_iphone_image'); $has_ios_iphone_image = !empty($ios_iphone_image->photo) && !empty($ios_iphone_image->photo->file_path); $ios_iphone_image_src = $has_ios_iphone_image ? (Str::startsWith($ios_iphone_image->photo->file_path, ['http://','https://']) ? $ios_iphone_image->photo->file_path : Storage::url($ios_iphone_image->photo->file_path)) : ''; @endphp
Drag & drop iPhone splash image (1125x2436)
iPhone Preview
Required size: 1125x2436 px (Portrait)
@php $ios_ipad_image = getKeyValue('ios_ipad_image'); $has_ios_ipad_image = !empty($ios_ipad_image->photo) && !empty($ios_ipad_image->photo->file_path); $ios_ipad_image_src = $has_ios_ipad_image ? (Str::startsWith($ios_ipad_image->photo->file_path, ['http://','https://']) ? $ios_ipad_image->photo->file_path : Storage::url($ios_ipad_image->photo->file_path)) : ''; @endphp
Drag & drop iPad splash image (1536x2048)
Required size: 1536x2048 px (Portrait)
Android Splash Screen Uploads
@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
Drag & drop HDPI splash image (720x1280)
HDPI Preview
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
Drag & drop MDPI splash image (480x800)
MDPI Preview
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
Drag & drop XHDPI splash image (960x1600)
XHDPI Preview
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
Drag & drop XXHDPI splash image (1440x2560)
XXHDPI Preview
Required size: 1440x2560 px
@endsection