📜  laravel withtrashed - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:14.893000             🧑  作者: Mango

代码示例2
public function destroy($id){

  $res=User::find($id)->delete();
  if ($res){
    $data=[
    'status'=>'1',
    'msg'=>'success'
  ];
  }else{
    $data=[
    'status'=>'0',
    'msg'=>'fail'
  ];
  return response()->json($data);