@extends('layouts.app') @section('title', 'Kontak') @section('breadcrumb') @endsection @section('title-section', 'Kontak') @section('content')
@if ($message = Session::get('success'))
Success:  {{ $message }}
@endif
Tambah Kontak @foreach ($data as $key => $row) @endforeach
# Nama Email No WA Alamat Action
{{ $key + 1 }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} {{ $row->address }}
@method('DELETE') @csrf Edit
@endsection