@extends('user.layout.master') @section('content') @php $MyOrganisations = $pageData['MyOrganisations']; $Organisations = $pageData['Organisations']; $StateList = StateList(); @endphp
@include('user/organisation/header')

Add Organization

@csrf
@error('organisation_name') {{ $message }} @enderror
@error('contact_person') {{ $message }} @enderror
@error('contact_number') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('state') {{ $message }} @enderror
@error('zipcode') {{ $message }} @enderror

Your Organization

@if($MyOrganisations != null && count($MyOrganisations) > 0 ) @else @include('user/layout/norecords') @endif
@if($MyOrganisations != null && count($MyOrganisations) > 0 ) @foreach($MyOrganisations as $key => $Organisation) @endforeach @endif
Sr.No Organization Name Contact Person Mobile Number Action
{{ $key+1 }} {{ $Organisation['organisation_name'] }} {{ $Organisation['contact_person'] }} {{ $Organisation['contact_number'] }}

Tree View

@if($Organisations != null && count($Organisations) > 0 )
    @foreach($Organisations as $key => $Organisation)

  • Warning: Undefined variable $Organisation in C:\xampp\htdocs\resources\views\user\organisation\dashboard.blade.php on line 282

    Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\resources\views\user\organisation\dashboard.blade.php on line 282
      @if(isset($Organisation['Departments']) && count($Organisation['Departments'])>0) @foreach($Organisation['Departments'] as $DeptInfo)

    • Warning: Undefined variable $DeptInfo in C:\xampp\htdocs\resources\views\user\organisation\dashboard.blade.php on line 287

      Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\resources\views\user\organisation\dashboard.blade.php on line 287
        @if(isset($DeptInfo['Users']) && count($DeptInfo['Users']) > 0) @foreach($DeptInfo['Users'] as $UserInfo)