forked from nathalie/pedi2
Mostrar nombre de subpedido o de barrio en el header de app
This commit is contained in:
parent
7e85a0e2ff
commit
4d3209e11b
|
@ -7,7 +7,7 @@ Vue.component('nav-bar', {
|
|||
<a class="navbar-item" href="https://bulma.io">
|
||||
<img src="/assets/logoMPS.png" height="28">
|
||||
</a>
|
||||
<p style="margin:0 auto" class="navbar-item">Pedido de <slot name="subpedido"></slot></p>
|
||||
<p style="margin:0 auto" class="navbar-item"><slot name="subpedido"></slot></p>
|
||||
<a role="button" class="navbar-burger" :class="{'is-active':isActive}" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample" @click="toggleState">
|
||||
<span aria-hidden="true"></span>
|
||||
<span aria-hidden="true"></span>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<title>{{ config('app.name', 'Compras del MPS') }}</title>
|
||||
<title>{{ session("subpedido_nombre") ? "Pedido de " . session("subpedido_nombre") . " - " . config('app.name', 'Compras del MPS') : config('app.name', 'Compras del MPS')}}</title>
|
||||
|
||||
<!-- Scripts -->
|
||||
|
||||
|
@ -20,8 +20,8 @@
|
|||
<body>
|
||||
<div id="app">
|
||||
<nav-bar>
|
||||
<template slot="subpedido">{{ session('subpedido_nombre',"") }}</template>
|
||||
<template slot="gdc">{{ Auth::user()->name }}</template>
|
||||
<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>
|
||||
<template slot="logout-form">
|
||||
<form id="logout-form" action="{{ route('logout') }}" method="POST" class="d-none">
|
||||
@csrf
|
||||
|
|
Loading…
Reference in New Issue