Added no Page URL message

Added no Page URL message to the Admin and User panel
This commit is contained in:
Julian Prieber 2022-03-21 16:46:35 +01:00
parent a0d8c05f4e
commit 6f94f40636
2 changed files with 11 additions and 5 deletions

View File

@ -1,9 +1,12 @@
@extends('layouts.sidebar')
@section('content')
@if($littlelink_name == '')
<h2 class="mb-4"> 👋 Hi, stranger</h2>
<h5>You do not have a Page URL set, yet you can change that in the Page section</h5>
@else
<h2 class="mb-4"> 👋 Hi, @<?= $littlelink_name ?></h2>
@endif
<p>
Welcome to {{ config('app.name') }}!
</p>

View File

@ -1,11 +1,14 @@
@extends('layouts.sidebar')
@section('content')
@if($littlelink_name == '')
<h2 class="mb-4"> 👋 Hi, stranger</h2>
<h5>You do not have a Page URL set, yet you can change that in the Page section</h5>
@else
<h2 class="mb-4"> 👋 Hi, @<?= $littlelink_name ?></h2>
@endif
<p>
Welcome to {{ config('app.name') }}!
Welcome to {{ config('app.name') }}!
</p>
<div class="mt-5 row">
<h5 class="mb-4"><i class="bi bi-link"> link: {{ $links }} </i></h5>