Could you explain what do you mean by does not work with Laravel?

|
martianartisan 2021-01-19 06:33:19
2021-01-19 00:01:23
https://play.google.com/store/apps/details?id=mall.eshopping.alexlutambi.tamarindchatting

Hongera sana

2021-01-19 07:08:07
Asante sana πŸ™πŸ½
susheelk985 2021-01-19 09:23:07
how to get data from database? if the data updated_at<5 minutes
mazcvei 2021-01-19 09:44:15
susheelk985 2021-01-19 09:23:07
how to get data from database? if the data updated_at<5 minutes

Date(‘now’) and comprare

2021-01-19 10:55:32
hey guys. does anyone know why preg_match does not work with laravel but with pure php it does? <?php $roCIRegExps = [ ‘idExpiry’ => ‘/^.*Validity.*-(d{2}.d{2}.d{4}).*$/m’ ];
$finalText = “Validity 04.06.16-27.05.2023 IDROUNUME<“;
preg_match($roCIRegExps[‘idExpiry’] , $finalText , $matches);

print_r($matches);

hypernxf 2021-01-19 11:35:46
could you explain what do you mean by does not work with Laravel?
meetlunkad 2021-01-19 11:37:59
In normal PHP I had a option of settings if in settings some inputs are ticked then they should be validated and shown in the form
meetlunkad 2021-01-19 11:38:11
I need a easy trick of doing that in Laravel
justine_chacko 2021-01-19 11:59:16
2021-01-19 10:55:32
hey guys. does anyone know why preg_match does not work with laravel but with pure php it does? <?php $roCIRegExps = [ ‘idExpiry’ => ‘/^.*Validity.*-(d{2}.d{2}.d{4}).*$/m’ ];
$finalText = “Validity 04.06.16-27.05.2023 IDROUNUME<“;
preg_match($roCIRegExps[‘idExpiry’] , $finalText , $matches);

print_r($matches);

https://laravel.com/docs/8.x/validation#rule-regex does it help?

D_lorem 2021-01-19 12:30:38
Please can someone help direct me to the resources I need to begin my journey with Laravel, I seriously need a mentor. Thanks.
2021-01-19 12:32:24
how to install specific version of laravel with composer?
justine_chacko 2021-01-19 12:35:06
2021-01-19 12:32:24
how to install specific version of laravel with composer?

composer create-project laravel/laravel=7.30.1 your-project

justine_chacko 2021-01-19 12:36:32
D_lorem 2021-01-19 12:30:38
Please can someone help direct me to the resources I need to begin my journey with Laravel, I seriously need a mentor. Thanks.

Follow docs

2021-01-19 12:37:38
justine_chacko 2021-01-19 12:35:06
composer create-project laravel/laravel=7.30.1 your-project

thanks dear 😊

Ajay 2021-01-19 13:26:30
Without CSRF token post a msg …
Ajay 2021-01-19 13:26:47
Plz explain ..
meetlunkad 2021-01-19 13:27:54
meetlunkad 2021-01-19 11:37:59
In normal PHP I had a option of settings if in settings some inputs are ticked then they should be validated and shown in the form

Please help

Asish K Antony 2021-01-19 13:33:38
I have a laravel que job i need to get the job id while dispatching the job
I am using the database driver
imhajiiii 2021-01-19 13:41:15
guys how to transfer data in blade file to js file
Asish K Antony 2021-01-19 13:51:02
https://stackoverflow.com/q/65790011/10616754

Getting Job Id in a Laravel queue with Database driverStack Overflow
I have a laravel job which I create from a controller and some times i want to delete those jobs as the timings will be rescheduled
It is a notification job which sends notification one hour before a
giorbismiguel 2021-01-19 16:18:49
imhajiiii 2021-01-19 13:41:15
guys how to transfer data in blade file to js file

At the end on the file print the variable and assign to the bar in javascript.

giorbismiguel 2021-01-19 16:20:12
var example = ‘{{ $example }}’;
giorbismiguel 2021-01-19 16:20:54
Inside script
giorbismiguel 2021-01-19 16:21:52
If the variable is array use @json($arraVar)
datlechin 2021-01-19 16:46:40
laravel_discuss-67017.jpg
why this not working?
rebory 2021-01-19 17:09:07
laravel_discuss-67019.jpg
i got this error while run npm run dev or npm run prod
rebory 2021-01-19 17:11:05
any buddy help me
NanoCellMusic 2021-01-19 17:30:01
rebory 2021-01-19 17:09:07
i got this error while run npm run dev or npm run prod

go into package.json and under “scripts” you will see “development” and “production”
remove ‘β€”hide-modules’ from each of them and it should work again

NanoCellMusic 2021-01-19 17:30:30
“development”: “cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js –progress –hide-modules –config=node_modules/laravel-mix/setup/webpack.config.js”,
rebory 2021-01-19 17:30:44
NanoCellMusic 2021-01-19 17:30:30
“development”: “cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js –progress –hide-modules –config=node_modules/laravel-mix/setup/webpack.config.js”,

it work for me

NanoCellMusic 2021-01-19 17:30:52
change to “development”: “cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js –progress –config=node_modules/laravel-mix/setup/webpack.config.js”,
rebory 2021-01-19 17:30:55
https://laravel-mix.com/docs/6.0/postcss

PostCSS Preprocessing | Laravel Mix DocumentationLaravel-Mix
Documentation for Laravel Mix.
2021-01-19 17:49:37
justine_chacko 2021-01-19 11:59:16
https://laravel.com/docs/8.x/validation#rule-regex does it help?

Hi Justine, unfortunately, it is not the case. I am looking to match and grab a date from text by regex pattern.

2021-01-19 17:50:00
in pure php it works, in laravel it does not
DesolatorMagno 2021-01-19 17:52:56
Laravel is PHP, you can build a custom rule that does exactly what you need.
|