Refactor method names/views for Contacts

This commit is contained in:
Jonny Barnes 2017-02-15 18:41:54 +00:00
parent 5edb495bcb
commit 4af305ba3b
4 changed files with 6 additions and 6 deletions

View file

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