23 lines
426 B
PHP
23 lines
426 B
PHP
@extends('layouts.master')
|
|
|
|
@section('title', $pagetitle)
|
|
|
|
@section('content')
|
|
{!! Charts::styles() !!}
|
|
<h1>Details++ <small>Noch genauere Infos</small></h1>
|
|
|
|
|
|
<div class="resizechart resizechart2">
|
|
@foreach($chart as $ch)
|
|
{!! $ch->html() !!}
|
|
</br>
|
|
@endforeach
|
|
</div>
|
|
|
|
|
|
{!! Charts::scripts() !!}
|
|
@foreach($chart as $ch)
|
|
{!! $ch->script() !!}
|
|
@endforeach
|
|
@endsection
|