from django.urls import path

from .views import (
    DashboardView,
    InventoryReportView,
    MyDashboardView,
    ProfitReportView,
    SalesReportView,
    TopSellingReportView,
)

urlpatterns = [
    path('dashboard/', DashboardView.as_view(), name='report_dashboard'),
    path('my-dashboard/', MyDashboardView.as_view(), name='report_my_dashboard'),
    path('sales/', SalesReportView.as_view(), name='report_sales'),
    path('profit/', ProfitReportView.as_view(), name='report_profit'),
    path('inventory/', InventoryReportView.as_view(), name='report_inventory'),
    path('top-selling/', TopSellingReportView.as_view(), name='report_top_selling'),
]
