Foodomaa - Multi-restaurant Food Ordering, Restaurant & Delivery Application - (NULLED BY @LALBILLA)

Foodomaa - Multi-restaurant Food Ordering, Restaurant & Delivery Application - (NULLED BY @LALBILLA) 3.5

No permission to download

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
Hi all! ;)

Anyone who has issues doing the bulk upload for stores and menu items? What should be in the image column, the path to the image with the filename?

Many thanks ;)
the answer should be in HERE!
For Stores: assets/img/restaurants/bulk-upload
For Items: assets/img/items/bulk-upload
If you don't want to upload image set it as NULL in the CSV file.
 

kristenstewart

New member
Sep 28, 2020
13
10
3
Let me give a hint for the datatables error on the delivery boy page, the normal ajax expects a valid JSON data but datatables redirects to license page which wont complete the JSON request with a valid JSON so we see datatable error but when I blocked the request for the verification page the error was gone but the data was never fetched because the JSON wasnt received( in this case no invalid JSON was recieved so nothing happenes). My suggestion is to remove all the routes to the license page in the userdatatables in app/http folders and controller folders
 

Attachments

  • 11Capture.PNG
    11Capture.PNG
    68.5 KB · Views: 58
  • Capture.PNG
    Capture.PNG
    52.6 KB · Views: 57

kristenstewart

New member
Sep 28, 2020
13
10
3
Let me give a hint for the datatables error on the delivery boy page, the normal ajax expects a valid JSON data but datatables redirects to license page which wont complete the JSON request with a valid JSON so we see datatable error but when I blocked the request for the verification page the error was gone but the data was never fetched because the JSON wasnt received( in this case no invalid JSON was recieved so nothing happenes). My suggestion is to remove all the routes to the license page in the userdatatables in app/http folders and controller folders
Just found out the datatables problem was invoked in the manage delivery guys.blade.php in resource/views page
there is a function inside the script maybe we should match the data comparing it to the users.blade.php so we render a valid JSON for deliveryguys view
 
  • Like
Reactions: Husa11

arrocy

Active member
Null Master
Trusted Uploader
Jun 16, 2020
185
213
43
Just found out the datatables problem was invoked in the manage delivery guys.blade.php in resource/views page
there is a function inside the script maybe we should match the data comparing it to the users.blade.php so we render a valid JSON for deliveryguys view
Yes, you are right! If you go to Users -> All Users menu, then filter it by "delivery", then only "delivery guys" shown.
You can actually reuse users.blade.php and add filter by "delivery". Problem solved!
Finally, someone actually look in to the codes, examine it and follow the logic behind it.
Bravo @kristenstewart
 

kristenstewart

New member
Sep 28, 2020
13
10
3
As dumb as it may seem I just used the old admin controllers and old delivery and restaurant views nd fixed the issue

extract manage delivery inside resource/views/admin and controllers in app/http/controllers

Note: this will remove the ajax functionality in store owners and delivery guys table which were anyway faulty before.
 

Attachments

  • manageDeliveryGuys.blade.php.zip
    8.1 KB · Views: 23
  • Controllers.zip
    95.8 KB · Views: 21

kristenstewart

New member
Sep 28, 2020
13
10
3
I
As dumb as it may seem I just used the old admin controllers and old delivery and restaurant views nd fixed the issue

extract manage delivery inside resource/views/admin and controllers in app/http/controllers

Note: this will remove the ajax functionality in store owners and delivery guys table which were anyway faulty before.
It seemed odd and careless for me to replace all the blade views just replace managedeliveryguys blade in resources/views/admin and managedeliveryguysrestaurants blade of the old

just change the admincontroller for managedelivery function
----------------------Add Inside Funcion---------------------------------------
$users = User::role('Delivery Guy')->orderBy('id', 'DESC')->with('roles')->paginate(20);
$count = $users->total();
return view('admin.manageDeliveryGuys', array(
'users' => $users,
'count' => $count,
));
----------------------------------------------------------------------------------

without changing the views for the updated version you can safely remove the ajax functionality and fix with the old files
 

cryptoinc

Member
Banned User
Sep 5, 2020
83
35
18
Localhost
As dumb as it may seem I just used the old admin controllers and old delivery and restaurant views nd fixed the issue

extract manage delivery inside resource/views/admin and controllers in app/http/controllers

Note: this will remove the ajax functionality in store owners and delivery guys table which were anyway faulty before.
Using old controller and blade files the new updates features will not be accessible, like role manager, new settings etc.
 

kristenstewart

New member
Sep 28, 2020
13
10
3
Using old controller and blade files the new updates features will not be accessible, like role manager, new settings etc.
Dont use the old controller just edit the new controller and use only the older blade files for the delivery table and store manager table
 

rogeriocpe

New member
Apr 19, 2021
5
2
3
eu

Pareceu-me estranho e descuidado substituir todas as visualizações da lâmina, apenas substituir a lâmina managedeliveryguys na lâmina resources / views / admin e managedeliveryguysrestaurants do antigo

basta alterar o controlador de administração para a função de entrega gerenciada
---------------------- Adicionar Funcionamento Interno ------------------------- --------------
$ users = User :: role ('Delivery Guy') -> orderBy ('id', 'DESC') -> with ('roles') -> paginate (20);
$ count = $ users-> total ();
return view ('admin.manageDeliveryGuys', array (
'usuários' => $ usuários,
'count' => $ count,
));
-------------------------------------------------- --------------------------------

sem alterar as visualizações para a versão atualizada, você pode remover com segurança a funcionalidade ajax e corrigir com os arquivos antigos
Muito obrigado por mim funcionou, parabéns
 
  • Love
Reactions: Cacktus

Eddie Sousa

Member
Banned User
Apr 7, 2021
40
4
8
Brazil
eu

Pareceu-me estranho e descuidado substituir todas as visualizações da lâmina, apenas substituir a lâmina managedeliveryguys na lâmina resources / views / admin e managedeliveryguysrestaurants do antigo

basta alterar o controlador de administração para a função de entrega gerenciada
---------------------- Adicionar Funcionamento Interno ------------------------- --------------
$ users = User :: role ('Delivery Guy') -> orderBy ('id', 'DESC') -> with ('roles') -> paginate (20);
$ count = $ users-> total ();
return view ('admin.manageDeliveryGuys', array (
'usuários' => $ usuários,
'count' => $ count,
));
-------------------------------------------------- --------------------------------

sem alterar as visualizações para a versão atualizada, você pode remover com segurança a funcionalidade ajax e corrigir com os arquivos antigos


Hello, grateful for the collaboration!

But tell me, where do I put this code exactly? Could you show a layman like me?
 

istanbul

New member
Apr 9, 2021
2
0
1
Screenshot_2.png

How do I add a GDPR license checkbox to the registration page?
When I want to remove a different item, I can destroy it, but I couldn't add gdpr.

Please is there someone who can help, even if you explain it in general terms.
 

jacksparrow45

New member
Oct 12, 2020
12
-1
3
Screenshot_2.png

How do I add a GDPR license checkbox to the registration page?
When I want to remove a different item, I can destroy it, but I couldn't add gdpr.

Please is there someone who can help, even if you explain it in general terms.
Login into Dashboard go to settings - Language - English Edit find " Already have an account?" Input your text and Save but don't know how to insert page link you will also find GDPR message in thr
 

willowdan

Member
Feb 10, 2021
83
5
8
Hi All,

Greetings!

Is there a way to add in the delivery app the mobile number of store owner or merchant, just like the number of the customer?

Many thanks and cheers!
 

willowdan

Member
Feb 10, 2021
83
5
8
Hi All,

Greetings!

Is there a way to print the Delivery PIN outside of the "Track Order" in the customer app?

Many thanks
 

willowdan

Member
Feb 10, 2021
83
5
8
Hi All,

Greetings!

Anyway to turn off the required PIN to complete the delivery process?

Many thanks and cheers!
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu