Rename offering to offer
This commit is contained in:
parent
a7b4bf09e4
commit
f54f663fb0
12 changed files with 90 additions and 59 deletions
|
@ -3,7 +3,7 @@
|
|||
namespace App\Controller\Admin;
|
||||
|
||||
use App\Entity\User;
|
||||
use App\Entity\Offering;
|
||||
use App\Entity\Offer;
|
||||
use App\Entity\Wish;
|
||||
use EasyCorp\Bundle\EasyAdminBundle\Config\Dashboard;
|
||||
use EasyCorp\Bundle\EasyAdminBundle\Config\MenuItem;
|
||||
|
@ -36,7 +36,7 @@ class DashboardController extends AbstractDashboardController
|
|||
yield MenuItem::linktoRoute('Back to the website', 'fas fa-arrow-left', 'offers');
|
||||
yield MenuItem::linktoDashboard('Dashboard', 'fa fa-home');
|
||||
yield MenuItem::linkToCrud('User', 'fas fa-user', User::class);
|
||||
yield MenuItem::linkToCrud('Offering', 'fas fa-seedling', Offering::class);
|
||||
yield MenuItem::linkToCrud('Offer', 'fas fa-seedling', Offer::class);
|
||||
yield MenuItem::linkToCrud('Wish', 'fas fa-star', Wish::class);
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue