tagline title

This commit is contained in:
Bayu Lukman Yusuf 2026-02-26 09:30:16 +07:00
parent ca4b0f15d8
commit f05b7378dc
8 changed files with 8 additions and 6 deletions

View File

@ -3,6 +3,7 @@ APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
APP_TAGLINE=Tagline
APP_LOCALE=en
APP_FALLBACK_LOCALE=en

View File

@ -14,6 +14,7 @@ return [
*/
'name' => env('APP_NAME', 'Laravel'),
'tagline' => env('APP_TAGLINE', 'Tagline'),
/*
|--------------------------------------------------------------------------

View File

@ -1,4 +1,4 @@
@extends('layouts.landing', ['title' => 'Checkout v.1 - Shopping Cart'])
@extends('layouts.landing', ['title' => 'Shopping Cart'])
@section('content')
<!-- Authentication offcanvas -->

View File

@ -1,4 +1,4 @@
@extends('layouts.landing', ['title' => 'Checkout v.1 - Delivery Info Step 1'])
@extends('layouts.landing', ['title' => 'Checkout'])
@section('content')
<x-layout.header-grocery />

View File

@ -1,4 +1,4 @@
@extends('layouts.landing', ['title' => 'Checkout v.1 - Delivery Info Step 2'])
@extends('layouts.landing', ['title' => 'Checkout'])
@section('content')
<!-- Order preview offcanvas -->

View File

@ -1,4 +1,4 @@
@extends('layouts.landing', ['title' => 'AsiaGolf Store'])
@extends('layouts.landing', ['title' => config('app.tagline')])
@section('content')

View File

@ -1,4 +1,4 @@
@extends('layouts.landing', ['title' => 'Grocery Store'])
@extends('layouts.landing', ['title' => config('app.tagline')])
@section('content')

View File

@ -1,4 +1,4 @@
@extends('layouts.landing', ['title' => 'Fashion Store - Product Page'])
@extends('layouts.landing', ['title' => $product->name ?? 'Detail'])
@section('content')