LinkStack/resources/views/panel/index.blade.php

26 lines
998 B
PHP
Raw Normal View History

2021-04-16 01:00:00 +02:00
@extends('layouts.sidebar')
@section('content')
@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>
@else
2021-07-06 10:50:27 +02:00
<h2 class="mb-4"> 👋 Hi, @<?= $littlelink_name ?></h2>
@endif
2021-04-16 01:00:00 +02:00
<p>
2021-07-06 10:50:27 +02:00
Welcome to {{ config('app.name') }}!
2021-04-16 01:00:00 +02:00
</p>
<div class="mt-5 row">
<h5 class="mb-4" title="all links"><i class="bi bi-share-fill"> {{ $siteLinks }} </i></h5>
<h5 class="mb-4 ml-5" title="all clicks"><i class="bi bi-eye-fill"> {{ $siteClicks }} </i></h5>
<h5 class="mb-4 ml-5" title="all Users"><i class="bi bi bi-person-fill"> {{ $userNumber }}</i></h5>
</div>
<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