@php
$title = translate('Do you want to move to Trash');
$text = translate('If You trash,city data will be trashed.');
if ($city->trashed()) {
$title = translate('Are you sure you want to delete this permanently');
$text = translate(
'If You delete it,city data will be deleted permanently.',
);
}
@endphp
@if ($city->trashed())
@else
@endif