| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/convo/resources/views/ |
Upload File : |
@extends('partials.master')
@section('content')
<div class="row">
<div class="col-lg-12">
<div class="window" style="max-width: 212px">
<div class="window-header">
<img src="{{ asset('assets/images/icon.png') }}" />
{{ str_limit("{$account->screenname}'s Buddy List", 20) }}
</div>
<div class="window-action">
<span>My AIM</span>
<span>People</span>
<span>Help</span>
</div>
<img src="{{ asset('assets/images/a.png') }}" class="img-responsive" style="margin: 1em auto" />
<div class="window-buddy-list">
<a href="{{ action('MainController@index') }}" style="color: #00F; margin-bottom: 1em; display: block;"><i class="fa fa-sign-out"></i> Sign Out</a>
<strong>Buddies {{ $accounts->count() }} / {{ $accountsTotal }}</strong>
<ol>
@foreach($accounts as $account)
<li>
<a href="{{ action('MainController@conversations', ['id1' => $id, 'id2' => $account->id]) }}">{{ $account->screenname }}</a>
</li>
@endforeach
</ol>
</div>
<img src="{{ asset('assets/images/bottom.png') }}" class="img-responsive" style="margin: 0.5em auto;" />
</div>
</div>
</div>
@stop