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