  You're browsing the documentation for an old version of SupportPal. Consider upgrading to the [latest version](https://docs.supportpal.com/current/Plugin+Development+Reports). 

# Plugin Development: Reports

#### Previous Section: [Permissions](Plugin+Development+Permissions)

---

Plugins can define their own reports, which will be visible on the report dashboard within the operator panel.Plugin reports should be stored in a `Reports` directory within the plugin. An example file structure can be seen below:

```

    /Reports
	    Timesheet.php
        TotalTimeLogged.php

```

## Writing a Report

The same process is required to develop a plugin report, as if you were writing an application report in the `/app/Reports` directory.

For more information please refer to: [Custom Reports](Custom+Reports)

---

#### Next Section: [Form Requests](Plugin+Development+Form+Requests)