- Installed p7h/nas-file-manager package via private VCS repo - Published config/nas-file-manager.php with super_admin middleware restriction - Added NAS env vars to .env.example - Created admin/nas-storage page with connection info panel and file browser widget - Added NAS Storage link to admin sidebar (super_admin only) - Added SuperAdminController@nasStorage method and admin.nas-storage route - Includes all accumulated branch changes: profile wall, 2FA, audit logs, settings panel, country/phone/timezone components, posts, slideshow, playlist shares, video downloads/shares, comment likes, notifications, social links, and more Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
75 lines
3.1 KiB
PHP
75 lines
3.1 KiB
PHP
<x-emails.layout subject="Your video is live on TAKEONE">
|
|
|
|
{{-- Icon --}}
|
|
<div style="width:64px;height:64px;border-radius:50%;background:rgba(230,30,30,.12);border:1px solid rgba(230,30,30,.25);margin:0 auto 24px;text-align:center;line-height:64px;font-size:28px;">🎬</div>
|
|
|
|
<h1 class="email-title">Your video is live!</h1>
|
|
<p class="email-subtitle">It's uploading and processing right now — we'll have it ready shortly.</p>
|
|
|
|
<p class="email-text">Hi <strong style="color:#f1f1f1;">{{ $userName }}</strong>,</p>
|
|
<p class="email-text">
|
|
Your video <strong style="color:#f1f1f1;">"{{ $video->title }}"</strong> has been received and is now queued for processing.
|
|
Once encoding is complete it will be publicly available on your channel.
|
|
</p>
|
|
|
|
{{-- Thumbnail --}}
|
|
<div class="email-thumb-wrap">
|
|
@if($video->thumbnail)
|
|
<a href="{{ route('videos.show', $video) }}">
|
|
<img src="{{ asset('storage/thumbnails/' . $video->thumbnail) }}" alt="{{ $video->title }}">
|
|
</a>
|
|
@else
|
|
<div class="email-thumb-placeholder">
|
|
<span style="font-size:32px;">▶</span>
|
|
<span>{{ Str::limit($video->title, 40) }}</span>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
{{-- Details box --}}
|
|
<div class="email-infobox">
|
|
<div class="email-infobox-label">Video Details</div>
|
|
<div class="email-inforow">
|
|
<span class="email-inforow-key">Title</span>
|
|
<span class="email-inforow-val">{{ $video->title }}</span>
|
|
</div>
|
|
@if($video->description)
|
|
<div class="email-inforow">
|
|
<span class="email-inforow-key">Description</span>
|
|
<span class="email-inforow-val">{{ Str::limit($video->description, 80) }}</span>
|
|
</div>
|
|
@endif
|
|
<div class="email-inforow">
|
|
<span class="email-inforow-key">File size</span>
|
|
<span class="email-inforow-val">{{ round($video->size / 1024 / 1024, 2) }} MB</span>
|
|
</div>
|
|
@if($video->formatted_duration)
|
|
<div class="email-inforow">
|
|
<span class="email-inforow-key">Duration</span>
|
|
<span class="email-inforow-val">{{ $video->formatted_duration }}</span>
|
|
</div>
|
|
@endif
|
|
<div class="email-inforow">
|
|
<span class="email-inforow-key">Type</span>
|
|
<span class="email-inforow-val" style="text-transform:capitalize;">{{ $video->type ?? 'Generic' }}</span>
|
|
</div>
|
|
<div class="email-inforow">
|
|
<span class="email-inforow-key">Visibility</span>
|
|
<span class="email-inforow-val" style="text-transform:capitalize;">{{ $video->visibility ?? 'Public' }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
{{-- CTA --}}
|
|
<div class="email-btn-wrap">
|
|
<a href="{{ route('videos.show', $video) }}" class="email-btn">▶ Watch Video</a>
|
|
</div>
|
|
|
|
<hr class="email-divider">
|
|
|
|
<p class="email-note">
|
|
Questions? Reply to this email or visit
|
|
<a href="{{ config('app.url') }}">{{ config('app.url') }}</a>.
|
|
</p>
|
|
|
|
</x-emails.layout>
|