unioil-cms-fe/app/Livewire/Promotion.php

16 lines
324 B
PHP

<?php
namespace App\Livewire;
use Livewire\Component;
use Livewire\Attributes\Layout; // Required for layout declaration
#[Layout('layouts.dashboard')] // Attribute syntax for Laravel 11
class Promotion extends Component
{
public function render()
{
return view('livewire.promotion.promotion');
}
}