@extends('layouts.master') @section('content')

Customers Show عرض العملاء

User Image

@if( auth()->user()->is_superadmin ) Create New Customer @else    @endif

@foreach( $customers as $customer ) @endforeach
الاسم العنوان رقم الهاتف الايميل اسم المسؤل دور المسؤل رقم الهاتف المسؤل ايميل المسؤل رقم الموافقة البيئية رقم التسجيل التجاري رقم الضريبي رخصة التشغيل رقم التسجيل الصناعي المدينة الصناعية النشاط Actions
{{$customer->name}} {{$customer->address}} {{$customer->phone}} {{$customer->email}} {{$customer->responsable_name}} {{$customer->responsable_position }} {{$customer->responsable_phone}} {{$customer->responsable_email}} {{$customer->env_approve_nom}} {{$customer->commertial_registration_no}} {{$customer->tax_card_no}} {{$customer->operating_licence_no}} {{$customer->industrial_registration_no}} {{$customer->city->name }} {{$customer->activity }} @if( auth()->user()->is_superadmin )        @else    @endif @if( auth()->user()->is_superadmin ) @else    @endif
@endsection