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