Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 6, 2020 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/82f0c7f747366ddd7bdaaa288ef65947 to your computer and use it in GitHub Desktop.
Save parzibyte/82f0c7f747366ddd7bdaaa288ef65947 to your computer and use it in GitHub Desktop.
@extends('maestra')
@section("titulo", "Inicio")
@section('contenido')
<div class="col-12 text-center">
<h1>Bienvenido, {{Auth::user()->name}}</h1>
</div>
<div class="card-columns">
<a href="{{route("productos.index")}}" style="color: black;">
<div class="card text-center">
<img src="{{url("/img/order.png")}}" class="card-img-top">
<div class="card-body">
<h1 class="card-title">Productos</h1>
</div>
</div>
</a>
<a style="color: black;" target="_blank" href="https://parzibyte.me/blog/contrataciones-ayuda/">
<div class="card text-center">
<img src="{{url("/img/gamer.png")}}" class="card-img-top">
<div class="card-body">
<h1 class="card-title">Soporte</h1>
</div>
</div>
</a>
<a style="color: black;" href="{{route("vender.index")}}">
<div class="card text-center">
<img src="{{url("/img/sales.png")}}" class="card-img-top">
<div class="card-body">
<h1 class="card-title">Vender</h1>
</div>
</div>
</a>
<a style="color: black;" href="{{route("acerca_de")}}">
<div class="card text-center">
<img src="{{url("/img/about.png")}}" class="card-img-top">
<div class="card-body">
<h1 class="card-title">Acerca de</h1>
</div>
</div>
</a>
<a style="color: black;" href="{{route("ventas.index")}}">
<div class="card text-center">
<img src="{{url("/img/coupon.png")}}" class="card-img-top">
<div class="card-body">
<h1 class="card-title">Ventas</h1>
</div>
</div>
</a>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment