@extends('layouts.admin') @section('title', 'Search') @section('page-title', 'Search') @section('content')
Search across users, customers, campaigns, lists, delivery servers, bounce servers and plans.
Start by typing something in the search box above.
{{ $user->full_name }}
{{ $user->email }}
{{ $user->created_at->diffForHumans() }}
@emptyNo users found.
@endforelse{{ $customer->full_name }}
{{ $customer->email }} @if($customer->company_name) ยท {{ $customer->company_name }} @endif
{{ $customer->created_at->diffForHumans() }}
@emptyNo customers found.
@endforelse{{ $campaign->name }}
Subject: {{ $campaign->subject }}
{{ $campaign->created_at->diffForHumans() }}
@emptyNo campaigns found.
@endforelse{{ $list->name }}
{{ number_format($list->subscribers_count ?? 0) }} subscribers
{{ $list->created_at->diffForHumans() }}
@emptyNo lists found.
@endforelse{{ $server->name }}
{{ $server->hostname }}
{{ $server->created_at->diffForHumans() }}
@emptyNo delivery servers found.
@endforelse{{ $server->name }}
{{ $server->hostname }}
{{ $server->created_at->diffForHumans() }}
@emptyNo bounce servers found.
@endforelse{{ $plan->name }}
Price: {{ $plan->price ? '$' . number_format($plan->price, 2) : 'Free' }}
{{ $plan->created_at->diffForHumans() }}
@emptyNo plans found.
@endforelse