-1

Is there any way to convert PHP or any Laravel Application to stand alone application for desktop. I mean is there any software to change our php code to desktop app?

Adriaan
  • 17,741
  • 7
  • 42
  • 75
  • I doubt it. There's electron for js apps but i don't think if you can find anything for php let alone laravel – Areg Oct 25 '19 at 08:40

1 Answers1

0

Actual truth is you can not make a php or laravel project into a standalone application in windows or any other os .

You can do this by using any browser or running it in local .

But there are alternative ways to do it .

There is a bridge between php and .NET . You can use peachpie to make it easy .

Link : http://www.peachpie.io

Peachpie is PHP 7 compiler based on Roslyn by Microsoft and drawing from popular Phalanger. It allows PHP to be executed within the .NET/.NETCore by compiling the PHP code to pure MSIL.

I suggest the above one . But for alternates, there are lot of resources available to do it .

For more :

https://stackoverflow.com/a/9046775/8240120

farooq
  • 1,603
  • 2
  • 17
  • 33
  • 3
    you can make a php project into a standalone application - it's just a matter of converting the code - but 100% you can't use PHP to build a windows application (without any use of third-party tools) – treyBake Oct 25 '19 at 08:45
  • @treyBake Yes!! You are right . That's what I have mentioned at the top of post – farooq Oct 25 '19 at 08:49