- Added authentication controllers (Login, Register) - Added UserController for user profile management - Added VideoController with full CRUD operations - Added Video model with relationships (user, likes, views) - Added User model enhancements (avatar, video relationships) - Added database migrations for video_likes, video_views, user_avatar, video_visibility - Added CompressVideoJob for video processing - Added VideoUploaded mail notification - Added authentication routes - Updated web routes with video and user routes - Added layout templates (app, plain, partials) - Added user views (profile, settings, channel, history, liked) - Added video views (create, edit, index, show) - Added email templates
35 lines
1.4 KiB
PHP
35 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
|
|
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
.header { background: #e61e1e; color: white; padding: 20px; text-align: center; }
|
|
.content { padding: 20px; background: #f9f9f9; }
|
|
.footer { text-align: center; padding: 20px; color: #666; font-size: 12px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>TAKEONE</h1>
|
|
</div>
|
|
<div class="content">
|
|
<h2>Video Uploaded Successfully! 🎉</h2>
|
|
<p>Hi {{ $video->user->name }},</p>
|
|
<p>Your video <strong>"{{ $video->title }}"</strong> has been uploaded successfully!</p>
|
|
<p>Your video is now being processed and will be available shortly.</p>
|
|
<p>Video Details:</p>
|
|
<ul>
|
|
<li>Size: {{ round($video->size / 1024 / 1024, 2) }} MB</li>
|
|
<li>Orientation: {{ $video->orientation }}</li>
|
|
</ul>
|
|
<p><a href="{{ url('/videos/' . $video->id) }}" style="background: #e61e1e; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px;">View Video</a></p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>TAKEONE Video Platform</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|