EVOLUTION-MANAGER
Edit File: TurismoController.php
<?php namespace App\Http\Controllers\Turismo; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use Log; class TurismoController extends Controller { public function index(){ try { return view("turismo.turismo_index"); } catch (\Throwable $th) { Log::error(__CLASS__." => ".__FUNCTION__." => ".$th->getMessage()." => en la linea: ".$th->getLine()); abort(500); } } public function mapa(){ try { return view("turismo.mapa"); } catch (\Throwable $th) { Log::error(__CLASS__." => ".__FUNCTION__." => ".$th->getMessage()." => en la linea: ".$th->getLine()); abort(500); } } public function folleto(){ try { return view("turismo.folleto"); } catch (\Throwable $th) { Log::error(__CLASS__." => ".__FUNCTION__." => ".$th->getMessage()." => en la linea: ".$th->getLine()); abort(500); } } public function establecimientos(){ try { return view("turismo.establecimientos"); } catch (\Throwable $th) { Log::error(__CLASS__." => ".__FUNCTION__." => ".$th->getMessage()." => en la linea: ".$th->getLine()); abort(500); } } }