コード例 #1
0
ファイル: NotesController.php プロジェクト: hisambahaa/DARES
 public function delete(QuranNote $note, $nid)
 {
     $message = 'تم حذف الملاحظة بنجاح';
     $note->findOrFail($nid)->delete();
     return redirect()->route('n.quran.index')->with('success', $message);
 }