Answers for "laravel withtrashed"

PHP
1

laravel withtrashed

public function category() {
	return $this->belongsTo('App\Category')->withTrashed();
}
Posted by: Guest on June-18-2020
2

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);
Posted by: Guest on November-05-2020

Browse Popular Code Answers by Language