@extends('admin.layouts.app') @section('title', 'Kişiler') @section('styles') @endsection @section('content')

Kişiler

@foreach($contacts as $contact) @endforeach
ID Kurum Adı Soyadı Pozisyon Telefon E-posta Durum İşlemler
{{ $contact->id }} {{ $contact->institution->name }} {{ $contact->name }} {{ $contact->surname }} {{ $contact->position }} {{ $contact->phone }} {{ $contact->email }} {{ $contact->status == 'active' ? 'Aktif' : 'Pasif' }}
@endsection @section('scripts') @endsection