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

All Enquiries List

@foreach($items as $key=>$p) @endforeach
# Name Mobile Guardian Contact Course Location School Name Message Date
{{$key+1}} {{$p->fname}} {{$p->mobile}} {{$p->guardian_contact_num}} {{$p->course}} {{$p->location}} {{$p->school_name}} {{$p->message}} {{$p->created_at}}
@endsection