Example #1
0
 public function create()
 {
     $tags = Tag::orderBy('name')->get()->lists('name');
     return view('admin.clipping.create')->with('today_date', Carbon::now()->format('d-m-Y'))->with('tags', $tags);
 }