@extends('layouts.admin') @section('title') Ananas | Contacts @endsection @section('breadcrumb') @endsection @section('Contacts') active {{session('sidebar_color')}} @endsection @section('content')
Contact table
@foreach($contacts as $contact) @endforeach
ID Name Email Message

{{$contact->id}}

{{$contact->name}}

{{$contact->email}}

{{$contact->message}}

{{ $contacts->links() }}
@endsection