v0.0.10 when you are login in the login button says admin panle, and semi added ajax update post

This commit is contained in:
Victor
2021-06-07 15:01:28 +02:00
parent 9f969c4a92
commit 0c6d26d084
7 changed files with 52 additions and 16 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ require "../../bootstrap.php";
use Backend\Model\Post;
if(isset($_GET['delete_id'])){
$id = $_GET['delete_id'];
if(isset($_POST['delete_id'])){
$id = $_POST['delete_id'];
$findId = Post::query()->findOrFail($id);
if(!$findId->delete()){
return "Error could not delete";