@extends('layouts.master') @section('title',trans('dashboard.contactus')) @section('css') @endsection @section('page-content')
@if (count($errors) > 0) @foreach ($errors->all() as $error) @endforeach @endif @if (session()->has('add')) @endif @if (session()->has('edit')) @endif @if (session()->has('delete')) @endif
@foreach($contacts as $contact) @endforeach
# @lang('dashboard.name') @lang('dashboard.phone') @lang('dashboard.email') @lang('dashboard.description') @lang('dashboard.operations')
{{$contact->id}} {{$contact->name}} {{$contact->phone}} {{$contact->email}} {{$contact->descr}}
@endsection @section('js') @endsection