Have you tried logging the mail?
Do mysql start ?
anybody knows what is problem?
In Larahl there is a way to create an automated form?
Like as symfony?
Hey guys, I have a lot of answers by the same user in my DB, how can I get only the last answer he made?
When queue process notification if database method runs and finish while mail method runs and fail the notification will be put in failed job table but when will be processed again it will be set off a duplicate key on notifications table, what can i resolve?
Have you tried logging the mail?
i have the problem with laravel migration in sqlite database i config everything but when i want to migrate the database the god damn error show’s up
i try to “php artisan migrate”
error says ‘s “unable to open the database”
thanks if you have any ideas
everything is well set
You can use mailtrap
i have the problem with laravel migration in sqlite database i config everything but when i want to migrate the database the god damn error show’s up
i try to “php artisan migrate”
error says ‘s “unable to open the database”
thanks if you have any ideas
Do mysql start ?
i use sqlite in this project
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
Do you have *.sqlite file ?

i want to compile this simple js es6 function to es5 but when i run mix.js() the output is somthing else

I finally solve the problem
problem was from the file type for sqlite databases. we use a FILE type .sqlite and with some name for example database in directory of laravel root, named Database so the location is Database/database.sqlite and by mistake I was creating directory instead of creating file type named my sqlite DB (database.sqlite)
cause of that error (database can not open) show’s up
problem solved when I create a file type using CMD (windows) with this following command
(new-item database/database.sqlite -type file)
and my second mistake was that I was trying to use command TOUCH to create file but it is MAC OS terminal command and it doesn’t functioning for me(win)
and now I simply can run this code (php artisan migrate)
thanks for everyone.
bests.
We develop innovative services that provide total communication and information solutions. And IT is committed to exporting quality IT services worldwide.
I had a question
In Larahl there is a way to create an automated form?
I had a question
In Larahl there is a way to create an automated form?
Like as symfony? No!
Laravel Form Builder is a package by Kristijan Husak that incorporates an API similar to Symfony’s form builder for Laravel 5 applications.
$image = $request->file(‘DefaultImageName’, $images[mt_rand(0, count($images -1))]);
When queue process notification if database method runs and finish while mail method runs and fail the notification will be put in failed job table but when will be processed again it will be set off a duplicate key on notifications table, what can i resolve? Now i resolve split method mail and method database in two separate notifications
When queue process notification if database method runs and finish while mail method runs and fail the notification will be put in failed job table but when will be processed again it will be set off a duplicate key on notifications table, what can i resolve? Now i resolve split method mail and method database in two separate notifications
https://github.com/laravel/framework/pull/15681
This tweaks notification queued job to queue a job for each notifiable
/ channel combination. The reason for this is with the prior setup of
using a single job, if one channel fails to send and the…
Tnx!
return view(‘pages.about’);
});
This is what I have.

You’re right! This is so silly. I thought about it, but didn’t occured that could be it.