2022-01-08 02:53:00 -03:00
<! doctype html >
< html lang = " { { str_replace('_', '-', app()->getLocale()) }} " >
< head >
< meta charset = " utf-8 " >
< meta name = " viewport " content = " width=device-width, initial-scale=1 " >
<!-- CSRF Token -->
< meta name = " csrf-token " content = " { { csrf_token() }} " >
2022-01-11 17:34:34 -03:00
< title > {{ session ( " subpedido_nombre " ) ? " Pedido de " . session ( " subpedido_nombre " ) . " - " . config ( 'app.name' , 'Compras del MPS' ) : config ( 'app.name' , 'Compras del MPS' )}} </ title >
2022-04-11 22:17:10 -03:00
< link rel = " icon " type = " image/x-icon " href = " /assets/favicon.png " >
2022-01-08 02:53:00 -03:00
<!-- Fonts -->
2022-04-11 22:17:10 -03:00
< script src = " https://kit.fontawesome.com/9235d1c676.js " crossorigin = " anonymous " ></ script >
2022-01-08 02:53:00 -03:00
<!-- Styles -->
2022-01-08 23:56:37 -03:00
< link rel = " stylesheet " href = " https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css " >
2022-01-12 12:04:02 -03:00
< link rel = " stylesheet " href = " { { asset('css/app.css') }} " >
2022-01-24 12:51:55 -03:00
@ yield ( 'stylesheets' )
2022-01-08 23:56:37 -03:00
2022-01-08 02:53:00 -03:00
</ head >
2022-05-04 15:19:41 -03:00
< body class = " has-navbar-fixed-top " >
2022-01-08 02:53:00 -03:00
< div id = " app " >
2022-01-08 23:56:37 -03:00
< nav - bar >
2022-01-11 17:34:34 -03:00
< template slot = " subpedido " > {{ session ( 'subpedido_nombre' ) ? 'Pedido de ' . session ( 'subpedido_nombre' ) : Auth :: user () -> name }} </ template >
< template slot = " gdc " > {{ session ( 'subpedido_nombre' ) ? Auth :: user () -> name : " " }} </ template >
2022-01-08 23:56:37 -03:00
< template slot = " logout-form " >
< form id = " logout-form " action = " { { route('logout') }} " method = " POST " class = " d-none " >
@ csrf
</ form >
</ template >
</ nav - bar >
2022-01-13 20:15:46 -03:00
< nav - migas inline - template >
2022-05-04 15:19:41 -03:00
< nav class = " breadcrumb is-centered has-background-danger-light is-fixed-top " aria - label = " breadcrumbs " v - show = " visible " >
2022-01-13 20:15:46 -03:00
< ul >
< li v - for = " (miga, i) in migas " v - bind : class = " i==migas.length-1 ? 'is-active' : '' " >< a : href = " miga.href " v - text = " miga.nombre " ></ a ></ li >
</ ul >
</ nav >
</ nav - migas >
2022-01-08 02:53:00 -03:00
2022-05-04 15:19:41 -03:00
< main class = " py-4 has-top-padding " >
2022-01-08 02:53:00 -03:00
@ yield ( 'content' )
</ main >
</ div >
2022-02-22 10:45:16 -03:00
<!-- Scripts -->
2022-01-08 23:56:37 -03:00
< script src = " https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js " ></ script >
< script src = " { { asset('js/app.js') }} " defer ></ script >
2022-01-11 18:45:00 -03:00
< script src = " https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js " ></ script >
2022-01-09 19:52:54 -03:00
@ yield ( 'scripts' )
2022-01-08 02:53:00 -03:00
</ body >
2022-01-13 20:15:46 -03:00
</ html >