LinkStack/resources/views/panel/users.blade.php
JulianPrieber ec88a74889 Fixed bug/simplified setup
Fixed bug where users littlelink pages (domain.com/@username) would display a 404 error. This was caused due to the .env config file not containing an App URL. This issue could be solved by simply adding a URL to the config, this is now not necessary anymore, making the setup process easier and less confusing. 

I changed every instance of "{{ config('app.url') }}" to  "{{ url(' ') }}". This effectively automatically uses the correct URL for LittleLink links, even if LittleLink Custom is set up in a subdirectory.

In my testing, I couldn't find any problems this might have caused, so this appears to do the job just as well as setting the URL in the config. If I find any issues with this, I will revert this change.
2022-02-27 19:33:19 +01:00

44 lines
1.6 KiB
PHP
Executable File

@extends('layouts.sidebar')
@section('content')
<h2 class="mb-4"><i class="bi bi-person"> Users</i></h2>
<form action="{{ route('searchUser') }}" method="post">
@csrf
<div class="form-group col-lg-8 mb-5">
<input type="text" name="name" placeholder="search user">
<button type="submit" class="btn-primary"><i class="bi bi-search"></i></button>
</div>
</form>
Users:
<a href="{{ url('') }}/panel/users/all">All</a> -
<a href="{{ url('') }}/panel/users/user">User</a> -
<a href="{{ url('') }}/panel/users/vip">Vip</a> -
<a href="{{ url('') }}/panel/users/admin">Admin</a>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Page</th>
<th scope="col">Role</th>
<th scope="col">Edit</th>
<th scope="col">Block</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td> {{ $user->name }} </td>
<td><a href="{{ url('') }}/@<?= $user->littlelink_name ?>" target="_blank" class="text-info"><i class="bi bi-box-arrow-up-right"></i>&nbsp; {{ $user->littlelink_name }} </a></td>
<td>{{ $user->role }}</td>
<td><a href="{{ route('editUser', $user->id ) }}">Edit</a></td>
<td><a href="{{ route('blockUser', ['block' => $user->block, 'id' => $user->id] ) }}" class="text-danger">{{ $user->block }}</a></td>
</tr>
@endforeach
</tbody>
</table>
@endsection