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