@extends('layouts.app')
@section('content')
Contact
@include('component.breadcrumb', ['items' => ['Setting', 'Contact', 'All Contacts']])
@include('component.flash')
| Name |
Department |
Location |
Emails |
Actions |
@foreach($contacts as $contact)
| {{$contact->name}} |
{{$contact->department}} |
{{$contact->location}} |
@foreach(explode(';', $contact->emails) as $email)
{{$email}}
@endforeach
|
|
@endforeach
@stop