@extends('../../layouts/partials/header') {{-- @extends('adminlte::page') --}} @section('title', 'Contactos BMW') @section('content_header')

Contactos BMW

@endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif Agregar Contacto @foreach($contactos as $c) @endforeach
ID Email Principal Activo Acciones
{{ $c->id }} {{ $c->email }} @if($c->principal) TO @else BCC @endif @if($c->flag_activo) Activo @else Inactivo @endif ✏️ Editar
@csrf @method('PATCH')
📧 Probar Correo
@csrf @method('DELETE')
@endsection