@extends('emails.layouts.master') @section('title', trans('mail.Your ad ":title" will be deleted in :days days', ['title' => $ad->title, 'days' => $days])) @section('content')

@lang('mail.Hello,

Your ad ":title" will be deleted in :days days from :domain.

You can repost it by clicking here : :repostLink

If you do nothing your ad will be permanently deleted on :dateDel.

Thank you for your trust and see you soon,

The :domain Team
:domain


PS: This is an automated email, please don\'t reply.', [ 'title' => mb_ucfirst($ad->title), 'days' => $days, 'repostLink' => lurl('account/archived/repost/' . $ad->id), 'dateDel' => $ad->created_at->addMonths(4)->formatLocalized('%d %B %Y'), 'countryDomain' => lurl('/'), 'domain' => ucfirst(getDomain()) ])

@endsection