Example #1
0
 /**
  * Get the modal that adds a start point for a storyline
  * 
  * @param int $line_id
  * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
  */
 public function add_start($line_id)
 {
     // Get all available point types
     $point_type = PointType::where('name', 'start')->first();
     // Get all available story lines
     $story_line = Storyline::where('id', $line_id)->first();
     return view('forms.point_add_start', ['point_type' => $point_type, 'story_line' => $story_line]);
 }