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