コード例 #1
0
ファイル: TeamController.php プロジェクト: nathan-lochala/SF
 /**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store()
 {
     $team = Team::create(Request::all());
     if ($team) {
         flash()->success('The team, "' . $team->name . '" created successfully!');
     }
     return redirect(url('team/create'));
 }