slink/laravel/resources/views/profile.blade.php

32 lines
1.0 KiB
PHP
Raw Normal View History

2024-06-09 22:03:34 +00:00
@extends('default')
@section('title')
Profile
@endsection
@section('content')
2025-03-02 19:04:31 +00:00
<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>
2024-06-10 22:29:22 +00:00
<tr>
2025-03-02 19:04:31 +00:00
<th>Link</th>
<th>Destination</th>
<th>Created at</th>
2024-06-10 22:29:22 +00:00
</tr>
2025-03-02 19:04:31 +00:00
@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>
2024-06-09 22:03:34 +00:00
@endsection