@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)
| Başlık |
Telefon |
Oluşturulma |
@foreach($contact as $p)
| {{ $p->title }} |
{{ $p->phone }} |
{{ $p->created_at }} |
@endforeach
{{ $contact->links() }}
@else
Adres bilgileriniz yok.
@endif
@stop