예제 #1
0
 public function destroy($id)
 {
     Pessoa::destroy($id);
     return redirect()->route('agenda.index');
 }
예제 #2
0
 public function apagarContato($id)
 {
     Pessoa::destroy($id);
     $this->index();
 }