Top "Laravel-5.4" questions

Laravel 5 is the previous major version of the open-source PHP web development MVC framework created by Taylor Otwell.

Laravel Validation Rules If Value Exists in Another Field Array

I am working in Laravel 5.4 and I have a slightly specific validation rules need but I think this should be …

php laravel laravel-5 laravel-5.4 laravel-validation
Validation rules required_if with other condition (Laravel 5.4)

I got a problem with validation rules with nested conditions. class StoreRequest extends Request { public function authorize(){ return true; } public …

php laravel validation laravel-5.4 validationrules
Route [password.reset] not defined in laravel 5.4 in ResetPasswords.php

I'm getting this error in my custom app: InvalidArgumentException in UrlGenerator.php line 304: Route [password.reset] not defined. I know …

php laravel-5.4 forgot-password
Apply Middleware to all routes except `setup/*` in Laravel 5.4

I'm experimenting with Middleware in my Laravel application. I currently have it set up to run on every route for …

php laravel laravel-5 laravel-5.4 laravel-middleware
laravel how to validate as equal to a variable

in laravel validation (registering) i want to compare one of the fields with a php variable (it should be equal …

laravel validation laravel-5 laravel-5.4 laravel-validation
Undefined property: Illuminate\Database\Eloquent\Relations\BelongsTo::$name laravel 5.4

Hi following are my relations User Model public function loginlogout() { $this->HasMany("App\Models\LoginLogoutLogs"); } and this is my …

php laravel-5.4 has-many belongs-to
How to integrate Facebook PHP SDK with Laravel 5.4?

I was searching for an easy way to integrate Facebook PHP SDK with Laravel 5.4. Essentially, I wanted to make it …

laravel facebook-php-sdk laravel-5.4
Registering User with Laravel Passport

I set up password grant (it's backend for an app). Now, I can send a post request to oauth/token …

php laravel oauth laravel-5.4 laravel-passport
Call to undefined method Illuminate\Notifications\Notification::send()

I am trying to make a notification system in my project. These are the steps i have done: 1-php artisan …

laravel laravel-5 laravel-5.4 laravel-notification
Laravel: Seeding multiple unique columns with Faker

Introduction What up folks, I got a question about model factories and multiple unique columns: Background I have a model …

php mysql laravel laravel-5.4 laravel-seeding