@extends('layouts.app') @section('content')
Contact @include('component.breadcrumb', ['items' => ['Setting', 'Contact', 'All Contacts']])
@include('component.flash')
@foreach($contacts as $contact) @endforeach
Name Department Location Emails Actions
{{$contact->name}} {{$contact->department}} {{$contact->location}} @foreach(explode(';', $contact->emails) as $email) {{$email}}
@endforeach
{{ csrf_field() }} {{ method_field('DELETE') }} @include('component.sweetalert-delete', ['button' => '.btn-delete-'.$contact->id, 'form' => '.form-delete-'.$contact->id, 'text' => 'This item '.$contact->name.' will be permanently deleted'])
@stop