Skip to main content
0 votes
2 answers
55 views

By default, Laravel's email validation does not fail on invalid email, eg 'example@example'. $data = ['email' => 'example@example']; $rules = ['email' => 'email']; $v = Validator::make($data, $...
JohnSmith's user avatar
  • 506
-4 votes
0 answers
34 views

My Laravel 7 project is running on the server. I added a Telegram bot to it using Laravel itself. But when I upload it to the server, it shows an error. I zipped the 'irazasyed' folder inside the ...
Anvarbek Ergashev's user avatar
0 votes
1 answer
117 views

I need to check just existence of Laravel model relationships. Is there a loader similar to withCount? Eg // with count $authors = Author::withCount('books')->get(); foreach ($authors as $author) { ...
JohnSmith's user avatar
  • 506
0 votes
2 answers
73 views

I am working with an Excel file where users input dates, and I need to validate whether the entered date is valid (i.e., it actually exists). For example, if a user provides 31-02-2025, it should ...
Rahul Rahul's user avatar
0 votes
2 answers
81 views

Is there a Laravel functionality or package for such statement? Or perhaps is it achievable with "standard" functionality? NB This is non-working SQL, see below for correct SQL UPDATE ...
JohnSmith's user avatar
  • 506
0 votes
1 answer
84 views

My goal is to create a project for multiple vehicle resellers. I need to stay up-to-date with new brands, models, versions, and years that are constantly being released. However, it’s not practical ...
vítor bg's user avatar
1 vote
1 answer
49 views

I know maybe this question have been asked several times. All I want to do is display the PDF Blob in mobile screen web browser. I have tried to use embed tag and iframe tag but none of them can work ...
Febryan Akhdani's user avatar
-1 votes
2 answers
128 views

I have a project which contains some video files in storage/app/public/homepage/ The files are really there and in html there is something like <video autoplay muted loop> <source src=&...
Čamo's user avatar
  • 4,413
0 votes
2 answers
95 views

I want to find data between 2 month, for example data between months 8 and 9. Edit: The issue is in this line else if ($bulan1 != "semua" && $bulan2 != "semua") { $query-...
Febryan Akhdani's user avatar
0 votes
0 answers
58 views

I'm new to Laravel and I'm unsure about the cause of this error: Class 'Laravel\Http\Controllers\Api\V1\Controllers' not found in C:\xampp\htdocs\public_html\local\app\Http\Controllers\Api\V1\...
fatima's user avatar
  • 1
0 votes
0 answers
251 views

I'm using Laravel 7. would like like to inject services into a event listener. Injecting their interfaces through the constructor works fine, but when I add "implements ShouldQueue" to the ...
Richard House's user avatar
3 votes
0 answers
66 views

I have hosted my app to AWS with Cloudfront. I am using socialite for Social login. Facebook login works fine, but in Google login, it callback to ec2-x-xx-xxx-xxx.ap-northeast.AmazonAWS... Insted of ...
Shams Ticon's user avatar
0 votes
0 answers
71 views

I have already read a lot on the topic without having solved the problem... I'd like to deploy an old, simple Laravel 7.x project (working perfectly locally) on a remote server (shared at 'aruba.it') ...
Stefano Pagani's user avatar
1 vote
3 answers
210 views

I have this route defined in web.php web.php Route::group(['prefix' => 'user'], function () { Route::get('login', [FrontendController::class ,'showLoginForm'])->name('user.login-show');...
user3653474's user avatar
  • 3,872
0 votes
1 answer
663 views

I am referring the steps mentioned here phpSPO to include the library first in my php application using command composer require vgrem/php-spo. But when using below code to create a client, is not ...
SDLBeginner's user avatar

15 30 50 per page
1
2 3 4 5
151