@extends('admin.layouts.app') @section('content') Filters First Name Last Name Email Phone Gender Select @foreach(gender() as $gender) {!! $gender !!} @endforeach Marital Status Select @foreach(maritalstatus() as $marital_status) {!! $marital_status !!} @endforeach Profile Type Select @foreach(['Primary','Adult','Child'] as $profileType) {!! $profileType !!} @endforeach Relationship Select @foreach(relationships() as $relationships) {!! $relationships->name !!} @endforeach Age Range : Baptized From Baptized To Baptized at Meck? Select @foreach(["Yes","No"] as $baptized_here) {!! $baptized_here !!} @endforeach User Created From User Created To Interest From Date Interest To Date Events @foreach($events as $event) {!! $event->name !!} ({!! $event->slug !!}) @endforeach Classes @foreach($classes as $class) {!! $class->name !!} ({!! $class->slug !!}) @endforeach Serve Area @foreach($serveareas as $servearea) {!! $servearea->name !!} @endforeach Contents @foreach($contents as $content) {!! "(".($content->type->name ?? "").($content->series ? " > ".$content->series->name : "").") ".$content->name !!} @endforeach @if(@count(@$elexioGroups) > 0) Elexio Groups Select @foreach($elexioGroups as $elexioGroup) {!! $elexioGroup['name'] !!} @endforeach @endif Order Item Search Order Created From Order Created To Loyalty Balance : Loyalty Lifetime Points : Registration Source : Select @foreach(config('constants.REGISTRATION_SOURCE') as $k=>$v) {!! ucwords(str_replace("_"," ",$k)) !!} @endforeach Search Reset Avatar First Name Last Name Email Action @section('js') @stop @endsection