mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
use App\Models\Forumpost;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
if (! Auth::check()) {
|
|
$page->show403();
|
|
}
|
|
|
|
$id = request()->input('id') + 0;
|
|
|
|
if (isset($id)) {
|
|
Forumpost::deleteParent($id);
|
|
header('/forum');
|
|
}
|