@extends('layout.master') @section('page_title',ucfirst($type).'s') @section('title',str_replace('_',' ',ucfirst($type)).'s') @section('container')

   Message to {{config('app.name')}}

@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if (Session::has('errors'))
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
{{csrf_field()}}

Write below your message


@foreach($items as $value) @endforeach
Query Date Date Replied
{{ substr($value->message,0,120)}} {{$value->created_at}} {{$value->updated_at}}
{{ $items->links() }}
@endsection