2021-04-16 01:00:00 +02:00
|
|
|
@extends('layouts.sidebar')
|
|
|
|
|
|
|
|
@section('content')
|
2022-03-21 16:46:35 +01:00
|
|
|
@if($littlelink_name == '')
|
|
|
|
<h2 class="mb-4"> 👋 Hi, stranger</h2>
|
2022-05-10 12:38:26 +02:00
|
|
|
<h5>You do not have a Page URL set, yet you can change that on the <a href="{{ url('/studio/page') }}">Page section</a></h5>
|
2022-03-21 16:46:35 +01:00
|
|
|
@else
|
2021-07-06 10:52:17 +02:00
|
|
|
<h2 class="mb-4"> 👋 Hi, @<?= $littlelink_name ?></h2>
|
2022-03-21 16:46:35 +01:00
|
|
|
@endif
|
2021-04-16 01:00:00 +02:00
|
|
|
<p>
|
2022-03-21 16:46:35 +01:00
|
|
|
Welcome to {{ config('app.name') }}!
|
2021-04-16 01:00:00 +02:00
|
|
|
</p>
|
|
|
|
<div class="mt-5 row">
|
|
|
|
<h5 class="mb-4"><i class="bi bi-link"> link: {{ $links }} </i></h5>
|
|
|
|
<h5 class="mb-4 ml-5"><i class="bi bi-eye"> click: {{ $clicks }} </i></h5>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endsection
|