@extends('layouts.app') @section('title', $viewData["title"]) @section('subtitle', $viewData["subtitle"]) @section('content')
LIST OF CREATED CUSTOMERS
@foreach ($viewData["all_customers"] as $customer) @endforeach
# Customer name Internal customer name SSO type SSO address Last modification date
{{ $customer->get_id() }} {{ $customer->get_customer_name() }} {{ $customer->get_internal_customer_name() }} {{ $customer->get_sso_type() }} {{ $customer->get_sso_address() }} {{ $customer->get_updated_at() }}
@endsection