@extends('admin.default') @section('title', 'Admin | Recaptcha') @section('content')
{{$recaptcha->title ?? ''}}
{{$recaptcha->formula}}
{{ $recaptcha->result_checking}}
{{ ucwords($recaptcha->status) ?? '' }}

Example

Formula will generate random string {{$random = eval($recaptcha->formula.';')}} Now you have to confirm it with @php (!ctype_alnum($random))? $random = explode(',',$random) : $random; @endphp {{ eval($recaptcha->result_checking.';')}}
@endsection