在我的数据库中,我有一个文本字段
"6:00 AM Registration Opens; Day of Race registration (if available), check-in, packet pick up. 7:30 AM - First Wave Start. 10:00 AM - Awards Ceremony (time is approximate)."
我想要做的是让它在任何地方都打破.
@foreach($eventDetails as $info)
<p>{{explode('.', $info->eventSchedule)}}</p>
@endforeach
我不断收到的错误是
"Array to string conversion"