本文整理汇总了PHP中Laracasts\Flash\Flash::danger方法的典型用法代码示例。如果您正苦于以下问题:PHP Flash::danger方法的具体用法?PHP Flash::danger怎么用?PHP Flash::danger使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Laracasts\Flash\Flash
的用法示例。
在下文中一共展示了Flash::danger方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: store
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$this->validate($request, Point::$validation_rules);
$point = new Point();
$point->name = $request->input('name');
$point->description = $request->input('description');
$point->parent_id = $request->input('parent_id');
$point->line_id = $request->input('line_id');
$point->type_id = $request->input('type_id');
$point->user_id = $request->input('user_id');
// Check if the chosen point type is available
if (in_array($point->type_id, \Config::get('sf.unique_type_ids'))) {
$type_check = Point::where('line_id', $point->line_id)->where('type_id', $point->type_id)->first();
if (!empty($type_check)) {
Flash::danger(trans('alerts.point.point_already_set'));
return redirect()->back()->withInput();
}
}
$point->save();
Flash::success(trans('alerts.point.added'));
return redirect(action("StorylineController@show", ['id' => $point->line_id]));
}