@extends('layouts.wrap') @section('title', 'İletişim Adresleri') @include('contact::sidebar') @section('_content')

İletişim Adresleri

@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if($contact->count() > 0) @foreach($contact as $p) @endforeach
Başlık Telefon Oluşturulma
{{ $p->title }} {{ $p->phone }} {{ $p->created_at }}
{{ $contact->links() }} @else

Adres bilgileriniz yok.

@endif
@stop