xxxxxxxxxx
$data = DB::table('rbs_db.tbl_employee')
->where('id',$emp_id)
->delete();
xxxxxxxxxx
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);