jonnybarnes.uk/resources/views/contacts/index.blade.php
2017-02-18 14:16:22 +00:00

11 lines
214 B
PHP

@extends('master')
@section('title')
Contacts «
@stop
@section('content')
@foreach($contacts as $contact)
@include('templates.contact', ['contact' => $contact, 'image' => $contact->image])
@endforeach
@stop