Skip to content

Commit 6f94f40

Browse files
committed
Added no Page URL message
Added no Page URL message to the Admin and User panel
1 parent a0d8c05 commit 6f94f40

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

resources/views/panel/index.blade.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
@extends('layouts.sidebar')
22

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

resources/views/studio/index.blade.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
@extends('layouts.sidebar')
22

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

0 commit comments

Comments
 (0)