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 5.5 read a file from the local disk

I am trying to import a csv file with Laravel 5.5 from the local file location. For some reason it can't …

php laravel-5.4 laravel-5.5 laravel-request laravel-filesystem
How can I change the public path to something containing an underscore in Laravel Mix?

In Laravel 5.4 Mix was introduced to compile assets and maintain the asset pipeline. Mix defaults to your public directory being …

php laravel laravel-elixir laravel-5.4 laravel-mix
Object of class GuzzleHttp\Psr7\Request could not be converted to string

I've got an issue for laravel 5.4 when I trying to using guzzleHttp. here is my code. use GuzzleHttp\Client; $url = …

php laravel laravel-5.4 guzzle6 psr-7
Add delete button in Yajra Datatables in Laravel 5.4

I am now using Laravel 5.4 and Yajra Datatables plugin. Everything work fine but delete doesn't work. My url goes like …

jquery ajax datatables laravel-5.4 yajra-datatable
Laravel Collective date format

Is there a way to set Laravel Collective date picker format to yyyy-mm-dd? I am using now: {{ Form::date('deadline', …

laravel date laravel-5.4 laravelcollective
Ionicons not showing after npm installation

I installed ionicons using npm install --save ionicons so that my package.json updated to: "dependencies": { "ionicons": "^3.0.0" } Next, I added …

laravel laravel-5.4 laravel-mix ionicons
Class 'NumberFormatter' not found in Laravel 5.4

I'm trying to use PHP's intl extension to convert amount into words. For example, 1450 -> One Thousand Four Hundred …

php laravel laravel-5.4 numberformatter
Call to undefined method Illuminate\Database\Query\Builder::withAccessToken()

This error has come up when I use postman with the api.php file. Using the documentation example of Laravel 5.4 …

php laravel-5.3 laravel-5.4 laravel-passport
Laravel 5.4: Directly Subtract number from column in database

I want to subtract 100 number from credit column in database that is having int data type. I am looking for …

php mysql laravel laravel-5.4 laravel-query-builder
Laravel Factory: Manual Increment of Column

For the following factory definition, the column order needs to be sequential. There is already a column id that is …

php laravel laravel-5.4 laravel-seeding