问题 i have a page for maintenable email template. i used ck editor to add the text. and i have a data to read so in ckeditor i will write like Dear Valued Customer, Your application has been route approved Details : Name: {{$data->name}}, phone: {{$data->phone}}, and this will save to column text_email and i declare $data in controller but when i send the email, the ouput will show {{$data->name}} not the value of $data->name ; public function send_email($id){ $data=Data::where('id',$id)->first()