Tab.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonorDashboards\Tabs\DonationHistoryTab; |
| 4 | |
| 5 | use Give\DonorDashboards\Tabs\Contracts\Tab as TabAbstract; |
| 6 | |
| 7 | class Tab extends TabAbstract |
| 8 | { |
| 9 | |
| 10 | public static function id() |
| 11 | { |
| 12 | return 'donation-history'; |
| 13 | } |
| 14 | |
| 15 | public function routes() |
| 16 | { |
| 17 | return [ |
| 18 | DonationsRoute::class, |
| 19 | ]; |
| 20 | } |
| 21 | } |
| 22 |