@extends('layouts.app') @section('htmlheader_title') Address Merge @endsection @section('content')
@csrf

Merge Address {{ $o->ftn }}

{{ $o->system->sysop }} : {{ $o->system->name }}

@foreach ($oo as $ao) @endforeach
F T ID FTN ACTIVE Messages
{{ $ao->id }} {{ $ao->system_id }}:{{ $ao->system->name }} {{ $ao->ftn }} @if($ao->trashed()) @else @endif
    @foreach(\App\Models\Echomail::select(['id','msgid','from','msg','echoarea_id']) ->where('fftn_id',$ao->id) ->orderBy('created_at','DESC') ->with('echoarea') ->limit(5) ->get() as $eo)
  • {{ sprintf('%s-%04d: %s (%s) %s',$eo->echoarea->name,$eo->id,$eo->from,$eo->msgid,$eo->msg) }}
  • @endforeach
@include('widgets.error') @endsection