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