@extends('mail.layout') @section('mainsection')
@foreach($data as $key=>$value) @if($key!="receipt" && $key!='subject' && $key!='agree') @endif @endforeach
{{ ucwords(str_replace('_',' ',$key)) }}
@if(is_array($value))
@foreach($value as $val)
{{ $val }}
@endforeach
@else {{$value}} @endif
@stop