tagline title
This commit is contained in:
parent
ca4b0f15d8
commit
f05b7378dc
|
|
@ -3,6 +3,7 @@ APP_ENV=local
|
||||||
APP_KEY=
|
APP_KEY=
|
||||||
APP_DEBUG=true
|
APP_DEBUG=true
|
||||||
APP_URL=http://localhost
|
APP_URL=http://localhost
|
||||||
|
APP_TAGLINE=Tagline
|
||||||
|
|
||||||
APP_LOCALE=en
|
APP_LOCALE=en
|
||||||
APP_FALLBACK_LOCALE=en
|
APP_FALLBACK_LOCALE=en
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ return [
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'name' => env('APP_NAME', 'Laravel'),
|
'name' => env('APP_NAME', 'Laravel'),
|
||||||
|
'tagline' => env('APP_TAGLINE', 'Tagline'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.landing', ['title' => 'Checkout v.1 - Shopping Cart'])
|
@extends('layouts.landing', ['title' => 'Shopping Cart'])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<!-- Authentication offcanvas -->
|
<!-- Authentication offcanvas -->
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.landing', ['title' => 'Checkout v.1 - Delivery Info Step 1'])
|
@extends('layouts.landing', ['title' => 'Checkout'])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<x-layout.header-grocery />
|
<x-layout.header-grocery />
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.landing', ['title' => 'Checkout v.1 - Delivery Info Step 2'])
|
@extends('layouts.landing', ['title' => 'Checkout'])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<!-- Order preview offcanvas -->
|
<!-- Order preview offcanvas -->
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.landing', ['title' => 'AsiaGolf Store'])
|
@extends('layouts.landing', ['title' => config('app.tagline')])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.landing', ['title' => 'Grocery Store'])
|
@extends('layouts.landing', ['title' => config('app.tagline')])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.landing', ['title' => 'Fashion Store - Product Page'])
|
@extends('layouts.landing', ['title' => $product->name ?? 'Detail'])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue