In Laravel 4 , we have three types of environments that can be defined: local , production and testing .
I've even posted something about configuring the local environment here: #
I like to use the above con...
I'm going through a very strange problem.
When using Windows (Windows 7), my page loads as expected:
@extends + index.php
In Linux (Ubuntu 13.10) he is redirecting me to the / user / login route for no reason:
@extends + login.php...
I need to generate PDF report in Laravel 4. I found several alternatives and I'm in doubt about which option is best:
DOMPDF ( alternative link )
It seems very easy to use, since it is our good old HTML plus CSS, however I did not unders...
How do I install laravel 4 on a remote server via composer?
I searched intensely on the internet and found no convincing answer that was in line with good practices or the philosophy of the framework.
I'm having trouble logging in to the user in Laravel.
Look, it does not log in to the user, but it also does not return an error:
auth.php
return array(
'driver' => 'eloquent',
'model' => 'Cliente',
'table' => 'clien...
Initially, I created the following route (1st search):
Route::get('/buscar/profissoes/{city_id_slug?}', array('as' => 'neighborhoods.city',
'uses' => 'NeighborhoodsController@getIndexCity'));
Then the URL looks like this at the e...
I'm trying to save the information that comes from my registration form with this function:
public function postCreate()
{
$this->beforeFilter('csf', array('on' => 'post'));
$validator = Validator::make($data = Input::all(), Des...
In% with both 4 and 5, we have class Laravel , which allows specific validations.
By default there are several, such as Validator , required , email , and others.
But I would also like to be able to validate a phon...
I have an image on a page, I insert it as follows:
<img src="img/logo.png">
The image usually appears on pages with address
/ page
.
But when the URL is in the format
/ page / subpage
the image appears broken.
How c...
I'm developing a web service with NuSOAP in Laravel 4.
The class I'm using is link
Server
Route::any('ws/server', function()
{
$server = new \soap_server;
$server->configureWSDL('server.hello','urn:server.hello', Request:...