@extends('layouts.master') @section('title', __('Network Chart')) @push('styles') @endpush @section('breadcrumb-text')

{{ __('Network Chart') }}

@endsection @section('content')
@php $rankArr = [ "#FF4C00", "#00FF7F", "#005CFF", "#FFD700", "#FF7CFF", "#AA00FF", "#00B2B2", "#5C7C00", ]; $statusColors = [ "pending" => "#FFD700", "active" => "#008000", "deleted" => "#A9A9A9", "suspended" => "#CC8400", "abandoned" => "#A10000", "lockout" => "#0000FF", ]; @endphp

{{__('Color Representation for rank')}}

@foreach($rankArr as $index => $color)
{{$index}} Rank
@endforeach

{{__('Color Representation for status')}}

@foreach ($statusColors as $status => $color)
{{$status}}
@endforeach
@endsection @push('scripts') @endpush