si-klinik/sk-klinik.my.id/app/Livewire/Patient/NewsDetail.php

25 lines
455 B
PHP

<?php
namespace App\Livewire\Patient;
use App\Models\News;
use Livewire\Component;
class NewsDetail extends Component
{
public News $news;
public function mount(News $news)
{
$news->increment('view_count');
$this->news = $news->load('category');
}
public function render()
{
return view('livewire.patient.news.news-detail')
->layout('layouts.app'); // Sesuaikan dengan layout Anda
}
}