有什么方法可以在Flutter Web应用程序和管理面板(Laravel Framework)中创建新页面?
我已经购买了用于食品交付Android应用程序(用户应用程序,Web应用程序和交付Man应用程序)的基于扑动的完整源代码,并为我的项目构建了Laravel框架。
根据作者的文档指南,我根据自己的业务需求对食品应用程序进行了自定义。
我需要创建页面的帮助。在应用程序中,我有4页,我想要2页。
我已经在目录中创建了一个新页面
public_html/admin.domain.in/resources/views/views/revund-policy.blade.php
public_html/admin.domain.in/resources/resources/admin-views/business-settings/revund-policy.blade.blade.php
在routes/web.php
Route::get('refund-policy', 'HomeController@refund_policy')->name('refund-policy');
和路由/admin.php
,
Route::get('refund-policy', 'BusinessSettingsController@refund_policy')->name('refund-policy')->middleware('actch');
Route::post('refund-policy', 'BusinessSettingsController@refund_policy_update')->middleware('actch');
但我看不到管理面板和网站中的新页面部分。
I have purchased a Flutter-based full source code for a food delivery android app (user app, web app and delivery man app) and admin panel built with Laravel Framework for a project of mine.
As per the author's documentation guide, I have customized the food app as per my business needs.
I need help with creating a page. In the app I have 4 pages, I want 2 pages more.
I have created a new page in directories
public_html/admin.domain.in/resources/views/refund-policy.blade.php
public_html/admin.domain.in/resources/views/admin-views/business-settings/refund-policy.blade.php
also added below code in routes/web.php
Route::get('refund-policy', 'HomeController@refund_policy')->name('refund-policy');
and routes/admin.php
Route::get('refund-policy', 'BusinessSettingsController@refund_policy')->name('refund-policy')->middleware('actch');
Route::post('refund-policy', 'BusinessSettingsController@refund_policy_update')->middleware('actch');
But I am unable to see a new page section in the admin panel and website.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建这样的控制器和函数
,然后在侧面菜单上添加菜单
create controller and function like this
Then add menu on side menu