2023-06-18 13:33:26 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
@section('htmlheader_title')
|
2023-07-27 11:20:03 +00:00
|
|
|
Netmail {{ $o->msgid }}
|
2023-06-18 13:33:26 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
2024-04-22 04:27:48 +00:00
|
|
|
<div class="row">
|
2023-07-27 11:20:03 +00:00
|
|
|
<div class="col-12">
|
2024-05-12 23:24:35 +00:00
|
|
|
<h1>Netmail <small>{{ $o->msgid ?: '-' }}</small> <small class="float-end">#{{ $o->id }}</small></h1>
|
2023-06-18 13:33:26 +00:00
|
|
|
|
2023-07-27 11:20:03 +00:00
|
|
|
@include('widgets.message',['msg'=>$o])
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-18 13:33:26 +00:00
|
|
|
@endsection
|