EVOLUTION-MANAGER
Edit File: RutasTuristicasController.php
<?php namespace App\Http\Controllers\Pagina; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use Log; class RutasTuristicasController extends Controller { public function ver_parroquia($cod_tipo_ruta){ try { return view("pagina.rutas_turisticas.parroquias"); } catch (\Throwable $th) { Log::error(__CLASS__." => ".__FUNCTION__." => Mensaje => ".$th->getMessage()." => en la linea: ".$th->getLine()); return abort(500); } } public function detalle_ruta($cod_ruta){ try { return view("pagina.rutas_turisticas.detalle_ruta"); } catch (\Throwable $th) { Log::error(__CLASS__." => ".__FUNCTION__." => Mensaje => ".$th->getMessage()." => en la linea: ".$th->getLine()); return abort(500); } } }