@extends('default') @section('title') Profile @endsection @section('content')

Profile

Username: {{ Auth::user()->name }}

Email: {{ Auth::user()->email }}

Created at: {{ Auth::user()->created_at }}

@foreach ($shortlinks as $shortlink) @endforeach
Link Destination Created at
shortid) }}">{{ $shortlink['shortid'] }} {{ $shortlink['destination'] }} {{ Carbon\Carbon::parse($shortlink->created_at)->format('M jS Y') }}
@endsection