| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function deleteContact(string $id) |
||
| 29 | { |
||
| 30 | $contact = Contact::findOrFail($id); |
||
| 31 | $name = $contact->name; |
||
| 32 | $contact->delete(); |
||
| 33 | |||
| 34 | session()->flash('message', __(':name is no longer your contacts.', compact('name'))); |
||
| 35 | |||
| 36 | return redirect()->to(route('contact.index')); |
||
| 37 | } |
||
| 44 |