--- subject: "ReadLaterByEmail tokens" LOGO: "{{ asset('images/logo.png') }}" YOUR_TOKENS: "{{ __('emails.your_tokens') }}" TOKEN_NAME: "{{ $token->token_name }}" API_TOKEN: "{{ $token->api_token }}" DELETE_URL: "{{ URL::temporarySignedRoute('delete', now()->addHour(), ['token' => $token->api_token, 'email' => $user->email]) }}" DELETE: "{{ __('emails.delete') }}" ---
{{{ YOUR_TOKENS }}}
@foreach($tokens as $token)
{{{ TOKEN_NAME }}} {{{ API_TOKEN }}} {{{ DELETE }}} @endforeach