laravel withtrashed

40

laravel withtrashed -

public function category() {
	return $this->belongsTo('App\Category')->withTrashed();
}

laravel eloquent remove from db -

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);

Comments

Submit
0 Comments