@extends("_contact.mailbox.mailapp") @section("mailcontent")
{{ csrf_field() }}

{{ $lastmail->category->name }}

- Read Mail
@if($lastmail->label_id > 0)
{{ $lastmail->label->name }}
@endif
@if($lastmail->stared==1) @else @endif @if($lastmail->important==1) @else @endif
{{ $lastmail->created_at }}

{{ $lastmail->name > "" ? $lastmail->name : '' }}

{{ trans("buzzycontact.From") }} {{ $lastmail->email }}
{!! nl2br($lastmail->text) !!}
@endsection