コード例 #1
0
ファイル: DomainsController.php プロジェクト: b-l4ck/AbuseIO
 /**
  * Remove the specified resource from storage.
  * @param  int $id
  * @return Response
  */
 public function destroy(Domain $domain)
 {
     $domain->delete();
     return Redirect::route('admin.domains.index')->with('message', 'Domain has been deleted.');
 }