@extends('emails.layout') @section('title', 'Build Completed Successfully') @section('content')
Hi {{ $user->name }},
Great news! Your app build has been completed successfully.
Build Details:
App: {{ $build->app->name ?? 'N/A' }}
Platform: {{ ucfirst($build->platform) }}
Version: {{ $build->version_name }} (Build #{{ $build->version_code }})
Format: {{ strtoupper($build->build_format ?? 'APK') }}
@if($build->build_duration)Build Time: {{ gmdate('i:s', $build->build_duration) }}
@endifYour build is ready to download. You can also scan the QR code from your dashboard to install directly on your device.
Best regards,
The {{ $appName ?? config('app.name') }} Team