11 lines
304 B
PHP
11 lines
304 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Contents;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
$post = $request->all();
|
|
|
|
DB::table("contents")
|
|
|
|
->where('id', $post['id'])
|
|
|
|
->update(["cover" => ""]);
|
|
|
|
$return = back();
|
|
|
|
echo $return; |