Laravel Programming Web Development by SirMahlon page with form open in laravel 4.2 is not working. it throws this error Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Re: Laravel Programming Web Development by SirMahlon the issue has to do with forms in laravel 4.2 . So i get suggestions of changing some other things in the app.php file. which i have. runned composer update. it like am new to the framework. i really need help. Re: Laravel Programming Web Development by SirMahlon true but it working now. i guess laravel is case sensitive. when i changed from form to Form. it worked. Thanks Team Daniweb Re: Laravel Programming Web Development by jkon I just found https://github.com/laravel/laravel#hello-world . It looks like an interesting framework , I will dig more to it … Laravel Programming Web Development by pritaeas I just happened to come across "Laravel", a framework unknown to me. Has anybody used this one? If so, am looking for a comparison. Where does it fit in the range from small (TinyMVC) to large (Zend, Symfony). Re: Laravel Programming Web Development by diafol Never heard of it until this thread. I had a look here: http://www.geekgumbo.com/2012/11/13/laravel-php-framework-review/ May have a look at it myself, but I'll need to see a few more reviews first. The amount of time involved in learning a new framework is not trivial. :( Re: Laravel Programming Web Development by jkon You should be proud of giving your program helping other programmers (framework) to the community after all. I am participating in a framework and I would really like to see new ideas in other frameworks … I searched the “hello world” application example with laravel or a simple db app but there is nothing there only the documentation of the … Re: Laravel Programming Web Development by cereal Hello, I still didn't tested Laravel but it seems interesting. While searching I've found this blogpost which is enough explanatory, at least in comparison to CI: http://philsturgeon.co.uk/blog/2012/12/5-things-codeigniter-cannot-do-without-a-rewrite A good point is the support for composer packages: http://getcomposer.org/ Laravel : merging public_html with framework Programming Web Development by davy_yg Hello, Please help me set this laravel framework file. I have two folders: framework_freshway: - public_html - framework I still receive this error message when trying to run this url: http://localhost/framework_freshway/public_html/ Parse error: syntax error, unexpected 'class' (T_CLASS), expecting identifier (… Re: Laravel Framework Programming Web Development by davy_yg Another question: how to tell what version of laravel from the laravel files? How to check it? I have a laravel file which I cannot tell what version is it? Re: Laravel : merging public_html with framework Programming Web Development by davy_yg I try Xampp and I get this error message: 1/1 PDOException in Connector.php line 50: SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it. in Connector.php line 50 at PDO->__construct('mysql:host=soulfy.com;dbname=wwwsoulf_revsoul', 'wwwsoulf_revsoul', 'deleted', … Laravel Framework Programming Web Development by davy_yg Hello, I am trying to install laravel for the first but unable to do so. I already install the composer and it has error since it request php7.dll is missing from my computer. Where to find that file? Okay, then where is a good tutorial to learn laravel? Thanks in advance. Re: Laravel Framework Programming Web Development by diafol I'd find it easier to install the following: 1. Fresh install of XAMPP with PHP7 (uninstall previous versions - but backup any SQLs / Sites first) 2. Install Composer (uninstall any previous versions) - this is a must - old versions of composer don't like v7 3. Install Laravel to the directory of your choice (in htdocs) 4. Remember to set… Re: Laravel Framework Programming Web Development by diafol From the site: http://www.easyphp.org/save-easyphp-devservervc9-latest.php - be careful it automatically starts a download of the easyphp executable! The page states: >EasyPHP DevServer 14.1 VC9 PHP 5.4.x / 5.3.x / 5.2.x, Apache 2.4.7 VC9, MySQL 5.6.15, PhpMyAdmin, Xdebug + modules + components So, PHP5.4 as the maximum? Laravel 5.4… Re: Laravel Framework Programming Web Development by diafol >How to run artisan from laravel root directory? Since the extension is file, it requires another software to run artisan. Assuming you have added `php.exe` to your PATH (env variables). Composer should be added to PATH if you used the Windows installer. Laravel should be available globally too, but it does depend on how you installed it. … Re: Laravel : merging public_html with framework Programming Web Development by diafol Alternatively you could try a previous version of laravel Laravel Teacher Programming Web Development by davy_yg Hello, Is anyone here are really good at laravel? I am willing to pay at $8.00 / hour if anyone here can teach me how to work on laravel while working on my project as a sample through skype. Thanks. Re: Laravel Framework Programming Web Development by davy_yg I think I find it out. It is probably https://laracasts.com . Yet, I still need some help on installing laravel since I only learn it for one day. Re: Laravel Framework Programming Web Development by diafol I think it.s laravel -V Re: Laravel Framework Programming Web Development by davy_yg How to run artisan from laravel root directory? Since the extension is file, it requires another software to run artisan. Re: Laravel CRUD Booster Programming Web Development by davy_yg I finally get the database set up but now I do not know why it takes forever to install the CRUDBooster. C:\xampp\htdocs\crudbooster2>php artisan crudbooster:install # __________ __ ______ ____ __ # / ____/ __ \/ / / / __ \/ __ )____ ____ _____/ /____ _____ # / / / /_/ / / / … Laravel CRUD Booster Programming Web Development by davy_yg Hello, I am trying to learn the basic of Installing CRUD Booster in Laravel. I wonder how to create the databases? I cannot understand the manual. http://crudbooster.com/doc/5.3/intro I am getting this error when trying to run: http://localhost/crudbooster/public/admin/login ErrorException (E_ERROR) SQLSTATE[HY000] [1045] … laravel tutorial Programming Web Development by alispicy i want laravel tutorial or projects for reference, i did not find laravel tutorial for geting api data through js and php, how to get data on view. please help ....i am new to laravel Re: Laravel 6 - Redirect to a page after successful login Programming Web Development by Dani So sorry for the delay in responding. With native PHP, you can always redirect to a different page by setting an HTTP 301 redirect header as so: <?php header('Location: http://www.example.com/', true, 301); exit; ?> Note you **cannot** echo any HTML to the web browser before the header call. A 301 redirect … Re: laravel tutorial Programming Web Development by pritaeas Something like [this](http://maxoffsky.com/code-blog/laravel-ajax-example-source-code/) maybe? Laravel 6 - Redirect to a page after successful login Programming Web Development by jeffersonalomia Hi, I would like to ask how to redirect to another page, like for example dashboard page (because normally after successful login it will redirect the user to home page) ? I am new at laravel environment and I will highly appreciate all your comments and looking forward to learn a lot from you. Currently I am using Laravel 6 version. … Laravel pass variable to redirect Programming Web Development by spowel4 In Laravel 4, which I am just beginning to learn, I have this bit of logic in my controller: `$guid = Input::get('guid');`. I know that part works because I can echo out the value successfully. I am trying to pass the $guid value to a view through a redirect like this: `return Redirect::route('worktable1.show', $guid);` but I keep getting an … Laravel Passport- Protect routes for different user types Programming Web Development by baig772 I am using `passport` in `laravel` for authenticating my users in APIs. I am able to authenticate different types of users from different tables and generating different token for them but the routes are not protected. For example. A user can access the routes like this Route::group(['middleware' => 'auth:api'], function () {… Re: Laravel Passport- Protect routes for different user types Programming Web Development by PARDEEP_2 I think you have problem in middleware routes so follow this [article](https://www.cloudways.com/blog/rest-api-laravel-passport-authentication/) Laravel Cors API for multiple clients (domains) Programming Web Development by extjac Hello. I am trying to implement a Laravel API that will be consumed by different clients (domains). The API basically, sends json response to the clients. For instance, when the client app.anyclient.com sends a AJAX/post request to api.myapi.com/login …the API is able to validate and login the user; however, the session will not persist. So if I …