Esempio n. 1
0
 /**
  * Show the upload tattoo form
  *
  * @return Response
  */
 public function addCulture()
 {
     $bigCultr = Cultr::where('col', 6)->get();
     $smallCultr = Cultr::where('col', 4)->get();
     return view('admin.addCulture', ['bigCultr' => $bigCultr, 'smallCultr' => $smallCultr]);
 }
Esempio n. 2
0
 /**
  * Display tattoo-cultr Page
  *
  * @return View
  */
 public function tattooCultr()
 {
     $bigCultr = Cultr::where('col', 6)->get();
     $smallCultr = Cultr::where('col', 4)->get();
     return view('pages.tattoo_cultr', ['bigCultr' => $bigCultr, 'smallCultr' => $smallCultr]);
 }