minor changes
This commit is contained in:
parent
df147d9014
commit
da2422e44a
|
@ -40,9 +40,9 @@ class Shortlink extends Model
|
|||
$this->save();
|
||||
}
|
||||
|
||||
function generateNewId(int $length = 6): string {
|
||||
function generateNewId(int $length = 5): string {
|
||||
$characters = 'qwrtypsdfghjklzxcvbnmQWRTYPSDFGHJKLZXCVBNM256789_';
|
||||
// try n x 2 times to generate a new id, if it finds an id, return it, otherwise, try to look for an id of length + 1
|
||||
// try n x 2 times to generate a new id, if it finds an id, return it, otherwise, try to look for an id of length n + 1
|
||||
for ($i = 0; $i < $length * 2; $i++) {
|
||||
$id = '';
|
||||
for ($i = 0; $i < $length; $i++) {
|
||||
|
|
|
@ -395,6 +395,7 @@ button {
|
|||
table {
|
||||
font-size: 1.5em;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
table td, table th {
|
||||
|
@ -420,10 +421,6 @@ table th:last-child, table td:last-child {
|
|||
border-right: none;
|
||||
}
|
||||
|
||||
table {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: auto;
|
||||
height: 50px;
|
||||
|
|
|
@ -5,22 +5,28 @@
|
|||
@endsection
|
||||
|
||||
@section('content')
|
||||
<h1>Profile</h1>
|
||||
<p>Username: <em>{{ Auth::user()->name }}</em></p>
|
||||
<p>Email: <em>{{ Auth::user()->email }}</em></p>
|
||||
<p>Created at: <em>{{ Auth::user()->created_at }}</em></p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Link</th>
|
||||
<th>Destination</th>
|
||||
<th>Created at</th>
|
||||
</tr>
|
||||
@foreach ($shortlinks as $shortlink)
|
||||
<div id="title-container" class="container">
|
||||
<h1>Profile</h1>
|
||||
</div>
|
||||
<div id="profile-container" class="container">
|
||||
<p>Username: <em>{{ Auth::user()->name }}</em></p>
|
||||
<p>Email: <em>{{ Auth::user()->email }}</em></p>
|
||||
<p>Created at: <em>{{ Auth::user()->created_at }}</em></p>
|
||||
</div>
|
||||
<div id="table-container" class="container">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="{{ url()->to("l/" . $shortlink->shortid) }}">{{ $shortlink['shortid'] }}</a></td>
|
||||
<td>{{ $shortlink['destination'] }}</td>
|
||||
<td>{{ Carbon\Carbon::parse($shortlink->created_at)->format('M jS Y') }}</td>
|
||||
<th>Link</th>
|
||||
<th>Destination</th>
|
||||
<th>Created at</th>
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
@foreach ($shortlinks as $shortlink)
|
||||
<tr>
|
||||
<td><a href="{{ url()->to("l/" . $shortlink->shortid) }}">{{ $shortlink['shortid'] }}</a></td>
|
||||
<td>{{ $shortlink['destination'] }}</td>
|
||||
<td>{{ Carbon\Carbon::parse($shortlink->created_at)->format('M jS Y') }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
</div>
|
||||
@endsection
|
Loading…
Reference in New Issue