@extends('admin/layouts.master') @section('title', 'Enquiry') @section('body')
@include('admin.message')

All Student Joining

@foreach($demovideo as $key=>$p) @endforeach
# Name Mobile Existence in student Existence in Enquiry Time Remark Remark Action
{{$key+1}} {{$p->name}} {{$p->mobile}} @php $already=App\User::where('mobile', $p->mobile)->get(); if(isset($already[0]->mobile)) { echo "Exists Student"; } else { echo "Not-Registered"; } @endphp @php $enquiry=App\Enquiry::where('mobile', $p->mobile)->get(); if(isset($enquiry[0]->mobile)) { echo "Enquired"; } else { echo "No-Enquiry"; } @endphp {{$p->created_at}} {{$p->remark}}
@endsection