line-chart.blade.php 700 B

1234567891011121314151617181920212223
  1. <div {!! $attributes !!}>
  2. <div class="dropdown btn-group {!! $options['show_tool_shadow'] ? '' : 'no-shadow' !!} pull-right">
  3. @foreach($options['tools'] as $tool)
  4. {!! $tool !!}
  5. @endforeach
  6. </div>
  7. <h4 class="header-title m-t-0 m-b-25">{!! $options['title'] !!}</h4>
  8. <div>
  9. <div>
  10. <div class="text-muted pull-right">{!! $options['description'] !!} </div>
  11. <h2 class="main-content m-b-10" >
  12. {!! $options['content']['left'] !!}&nbsp;
  13. </h2>
  14. </div>
  15. @if($options['chart'])
  16. <div style="margin:-4px -22px -20px">{!! $options['chart'] !!}</div>
  17. @endif
  18. </div>
  19. </div>