v0.0.5 Made edit and update
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
require "../../bootstrap.php";
|
||||
|
||||
use Backend\Model\Post;
|
||||
|
||||
if(isset($_GET['id'])){
|
||||
$id = $_GET['id'];
|
||||
$post = Post::query()->find($id);
|
||||
|
||||
if($post){
|
||||
echo $post;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user