@extends('layouts.app') @section('title', 'My Dashboard - SOFT Paste') @section('content')

My Dashboard

Manage all your saved code snippets and texts.

Create Paste
@if(session('success'))
{{ session('success') }}
@endif
@foreach($pastes as $paste) @endforeach
Title Syntax Visibility Status Created Actions
{{ $paste->title ?? 'Untitled Snippet' }} {{ $paste->syntax }} @if($paste->visibility === 'public') 🌍 @elseif($paste->visibility === 'unlisted') 🔗 @else 🔒 @endif {{ $paste->visibility }} @if($paste->expires_at && $paste->expires_at->isPast()) Expired @else Active @endif {{ $paste->created_at->format('M d, Y H:i') }}
View
@csrf @method('DELETE')
@push('scripts') @endpush @endsection