Lots of tests needed fixing, but it seemed to be a whitespace parsing
error in the view files 🤔
9 lines
213 B
PHP
9 lines
213 B
PHP
@extends('master')
|
|
|
|
@section('title')Contacts « @stop
|
|
|
|
@section('content')
|
|
@foreach($contacts as $contact)
|
|
@include('templates.contact', ['contact' => $contact, 'image' => $contact->image])
|
|
@endforeach
|
|
@stop
|