Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/resources/views/vendor/charts/highcharts/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/resources/views/vendor/charts/highcharts/geo.blade.php
@php
    // Get the max / min index
    $max = 0;
    $min = $model->values ? $model->values[0] : 0;
@endphp

@foreach($model->values as $dta)
    @if($dta > $max)
        @php($max = $dta)
    @elseif($dta < $min)
        @php($min = $dta)
    @endif
@endforeach

<script type="text/javascript">
    var {{ $model->id }};
    $(function () {
        {{ $model->id }} = new Highcharts.Map({
            chart: {
                renderTo:  "{{ $model->id }}",
                @include('charts::_partials.dimension.js2')
            },
            @if($model->title)
                title: {
                    text:  "{!! $model->title !!}"
                },
            @endif
            @if(!$model->credits)
                credits: {
                    enabled: false
                },
            @endif
            mapNavigation: {
                enabled: true,
                enableDoubleClickZoomTo: true
            },
            colorAxis: {
                min: {{ $min }},
                @if($model->colors and count($model->colors) >= 2)
                    minColor: "{{ $model->colors[0] }}",
                @endif

                max: {{ $max }},
                @if($model->colors and count($model->colors) >= 2)
                    maxColor: "{{ $model->colors[1] }}",
                @endif
            },
            series : [{
                data : [
                    @for ($i = 0; $i < count($model->values); $i++)
                        {
                            'code':  "{{ $model->labels[$i] }}",
                            'value': {{ $model->values[$i] }}
                        },
                    @endfor
                ],
                mapData: Highcharts.maps['custom/world'],
                joinBy: ['iso-a2', 'code'],
                name: "{!! $model->element_label !!}",
                states: {
                    hover: {
                        color: '#BADA55'
                    }
                },
            }]
        })
    });
</script>

@if(!$model->customId)
    @include('charts::_partials.container.div')
@endif

Spamworldpro Mini