Commit 81fb241b authored by Alfonso Rafael Solis Rangel's avatar Alfonso Rafael Solis Rangel
Browse files

Vista de crear y listar contactos

parent 0507da0d
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@ class ContactoController extends Controller
     */
    public function index()
    {
        //
        $contactos = Contacto::get();
        return view('adminGen.contactos.index', compact('contactos'));
    }

    /**
@@ -20,7 +21,7 @@ public function index()
     */
    public function create()
    {
        //
        return view('adminGen.contactos.create');
    }

    /**