Skip to content

Tag: laravel

redirect back in wrong route in laravel 6

i use Laravel 6 for my project and for some of controllers i have to redirect back so when i use in my project ,getting trouble and project redirect to automatically paste favicon.png to the end of the address also i use and check all route there is not any error in route i think something in framework change…

Laravel seeder with Eloquent give timestamp null

I am trying to insert static data, with the help of the seeder and Eloquent as bellow. Even after using Eloquent i am getting timestamp null in database. Answer The timestamp columns (created_at and updated_at) will be assigned automatically only if you are using the Eloquent save() method and create method a…

Php convert null value inside array to blank (” “)

I am returning all shipping address saved by user but there are some values which are left blank and output comes as null in those. How can i convert NULL values to blank (” “). I have looked many solutions on internet but not able to get make it working. API link: Answer You can just map the retu…

Trigger laravel event from wordpress

I’m currently working on a laravel app. The same app is already running on wordpress and through the laravel application we are going to add some additional features in original application. The laravel will run on the subdomain. Here is the thing: On wordpress website, we are publishing different publi…