@extends('layouts.app_widget')
@section('topbar_actions')
Create Pie Chart
@endsection
@section('content')
Pie Chart Widgets
@if($widgets->isEmpty())
No pie chart widgets yet.
@else
@foreach($widgets as $widget)
{{ $widget->name }}
Type: {{ $widget->chart_type }}
@endforeach
@endif
@endsection