27 lines
552 B
PHP
27 lines
552 B
PHP
|
<?php
|
||
|
|
||
|
namespace kernel\modules\post\controllers;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use kernel\modules\post\models\Post;
|
||
|
use kernel\RestController;
|
||
|
|
||
|
class PostRestController extends RestController
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->model = new Post();
|
||
|
}
|
||
|
|
||
|
public function actionView($id): void
|
||
|
{
|
||
|
$model = $this->model->where("id", $id)->first();
|
||
|
$model->load("user");
|
||
|
$res = [];
|
||
|
if ($model){
|
||
|
$res = $model->toArray();
|
||
|
}
|
||
|
|
||
|
$this->renderApi($res);
|
||
|
}
|
||
|
}
|