@extends('layout/principal') @section('titulo', 'Home') @section('content') @php //dd($id_operacion_detalle, $id_mandante, $nombre_mandante, $cav_folio); @endphp
VALIDACIÓN DE ALIAS MANDANTE

{{-- Mensajes estandar de Laravel --------}} @if (isset($errors) && $errors->any()) @endif {{-- Mensajes de Session personalizados --}} @if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('danger'))
{{ Session::get('danger') }}
@endif
{{--
Mandante: {{$nombre_mandante}}
--}}
{{$nombre_mandante}}
Operación: {{$id_operacion_detalle}}
@csrf
@foreach($no_es_mandante as $row) @endforeach
Seleccionar Acreedor Encontrado
{{ $row->acreedor }}
Cancelar {{-- Cancelar --}} {{-- Ir a Notarías --}}
@endsection