@extends('layouts.app') @section('title', $viewData["title"]) @section('subtitle', $viewData["subtitle"]) @section('content')
ADD CUSTOMER
@if($errors->any()) @endif
@csrf
LIST OF CREATED CUSTOMERS
@foreach ($viewData["all_customers"] as $customer) @endforeach
@if ($viewData["indicateur"]=='id') @if ($viewData["order"]=='DESC') ↓ # @else ↑ # @endif @else # @endif @if ($viewData["indicateur"]=='customer_name') @if ($viewData["order"]=='DESC') ↓ Customer name @else ↑ Customer name @endif @else Customer name @endif @if ($viewData["indicateur"]=='internal_customer_name') @if ($viewData["order"]=='DESC') ↓ Internal customer name @else ↑ Internal customer name @endif @else Internal customer name @endif @if ($viewData["indicateur"]=='sso_type') @if ($viewData["order"]=='DESC') ↓ SSO type @else ↑ SSO type @endif @else SSO type @endif @if ($viewData["indicateur"]=='sso_address') @if ($viewData["order"]=='DESC') ↓ SSO address @else ↑ SSO address @endif @else SSO address @endif Last modification date Edit
{{ $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