@extends('layouts.app_widget') @section('topbar_actions') {{-- Dropdown: chart type select kar ke create karo --}}
@endsection @section('content')

Widgets

@if($widgets->isEmpty())
No widgets yet. Create your first widget →
@else
@foreach($widgets as $widget)
{{ $widget->chart_type === 'pie' ? '🥧' : '📊' }}

{{ $widget->name }}

Type: {{ strtoupper($widget->chart_type) }} Status: {{ $widget->status ? 'Active':'Inactive' }} Created: {{ $widget->created_at->format('d M Y') }}
View Edit
@csrf @method('DELETE')
@endforeach
@endif
@endsection