Skip to content

Commit

Permalink
Livewire component for the ad video
Browse files Browse the repository at this point in the history
  • Loading branch information
Raccoon254 committed Jul 6, 2024
1 parent 613a6da commit 7ced0ef
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/Livewire/VideoAd.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace App\Livewire;

use Illuminate\View\View;
use Livewire\Component;

class VideoAd extends Component
{
public function render(): View
{
return view('livewire.video-ad');
}
}
3 changes: 3 additions & 0 deletions resources/views/livewire/video-ad.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
{{-- The Master doesn't talk, he acts. --}}
</div>

0 comments on commit 7ced0ef

Please sign in to comment.