← prev | next →
rezphp 2022-09-26 16:03:08
I want a post delete after a time automatically
what is function code ??
Laradev 2022-09-26 16:07:05
go to documentation and read about task scheduling
Laradev 2022-09-26 16:08:35
some good videos on youtube too (Laratips Channel), you can automate your delete job
scotttresor 2022-09-26 16:08:36
https://www.linkedin.com/posts/devscast_entrepreneuriat-podcast-developpemenlogiciel-activity-6980088867466932224-gRpc?utm_source=share&utm_medium=member_android
Devscast on LinkedIn: #entrepreneuriat #podcast #developpemenlogiciel –
LinkedinLes réalités du monde de l’entrepreneuriat racontées par un développeur qui a désormais un profil de chef de projet.
Il s’agit de Clerc Ngonga, CEO et…
. . 2022-09-26 17:25:56
https://youtu.be/ManVau02diw
Laravel 9 and Vuejs 3 project: Website Portfolio-Display all Educations Day-10 –
YouTubeIn this video we are going to learn how to Display all Educations in our Laravel 9 and Vuejs 3 project: Website Portfolio; Good viewing.
SUBSCRIBE BY CLICKING HERE
https://www.youtube.com/channel/UCgME7xUx_PrCdphF2k8bupg?sub_confirmation=1
Professional contact: sharetutorialsdev@gmail.com
Github: https://github.com/share-tutorials-dev
Did you like the video? Let me know by subscribe,like and comment🤔
Congratulations to today’s signings
YouTube: https://www.youtube.com/channel/UCgME7xUx_PrCdphF2k8bupg?sub_confirmation=1
Github: https://github.com/share-tutorials-dev
natghi2010 2022-09-26 17:32:44
Dhruv Trivedi 2022-09-26 13:26:54
How to push notifications in laravel
SSE
ErDina123 2022-09-26 17:40:46
In CurlFactory.php line 211:
cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/
libcurl-errors.html) for https://api.sendinblue.com/v3/contacts/folders
ErDina123 2022-09-26 17:42:29
I have this error using sendinblue API but it came when I deployed the project, so I tried to make an HTTPS site but it still doesn’t work
maithilijejani 2022-09-26 18:03:53
Where can I learn laravel?
DarshanSaroya 2022-09-26 18:22:09
maithilijejani 2022-09-26 18:03:53
Where can I learn laravel?
Laravel official site
Animator_kid_004 2022-09-26 18:37:22
DarshanSaroya 2022-09-26 18:22:09
Laravel official site
+++
Vinod Kakad 2022-09-26 19:01:23
Any package for laravel plan or membership subscription
JonsM90 2022-09-26 19:05:15

How to make laravel browser code like this
natghi2010 2022-09-26 19:07:23
JonsM90 2022-09-26 19:05:15

How to make laravel browser code like this
obstufucation
Kvngthrive 2022-09-26 19:23:52
Am tryna use liver wire click and is not working
Kvngthrive 2022-09-26 19:24:24
<a wire:click.prevent =“test” but is not working
Kvngthrive 2022-09-26 19:24:35
Please help
PALIWAL ENTERPRISE 2022-09-26 19:25:09
Looking for Laravel Developer with 2 yrs of experience. Part-time Remote work from home contact me at 9426143713
prudhvi_dev 2022-09-26 20:33:24
Vinod Kakad 2022-09-26 19:01:23

Any package for laravel plan or membership subscription
Laravel Cashier
azizbek_avazbekovich 2022-09-26 20:47:44
Guys, can i use foreach loop on phpword? If yes, example please
bsamaasi 2022-09-26 20:50:57
maithilijejani 2022-09-26 18:03:53

Where can I learn laravel?
https://bootcamp.laravel.com/
Laravel – Learn the PHP Framework for Web Artisans –
LaravelTogether let’s walk through building and deploying a modern Laravel application from scratch.
LoujainSd 2022-09-26 21:15:42
I have a multi language application (English and Arabic) using Laravel and the package mcamara, when I change the language of the site to Arabic the url of page change to ar it stays in English how can i solve it?
#Math 2022-09-26 21:31:18
LoujainSd 2022-09-26 21:15:42

I have a multi language application (English and Arabic) using Laravel and the package mcamara, when I change the language of the site to Arabic the url of page change to ar it stays in English how can i solve it?
But do u change local lang ??
LoujainSd 2022-09-26 21:33:15
not work
RichardMuvirimi 2022-09-26 21:54:26
azizbek_avazbekovich 2022-09-26 20:47:44

Guys, can i use foreach loop on phpword? If yes, example please
There should be a str_split function that splits by char. Not sure of the name, but at least you can start from there…
#Math 2022-09-26 22:51:05
LoujainSd 2022-09-26 21:33:15

not work
Show the code where u r changing
#Math 2022-09-26 22:51:16
U can write dm
namdi 2022-09-26 22:57:28
I have a condition that needs to true after 9pm at time
How do I achieve this using carbon
#Math 2022-09-26 23:17:03
namdi 2022-09-26 22:57:28

I have a condition that needs to true after 9pm at time
How do I achieve this using carbon
$curr = Carbon::now()->format(‘H:i’);
$defHour = ‘21:00’;
return $cur > $defHour ? true : false;
Have u tried something like this
namdi 2022-09-26 23:34:38
#Math 2022-09-26 23:17:03

$curr = Carbon::now()->format(‘H:i’);
$defHour = ‘21:00’;
return $cur > $defHour ? true : false;
Have u tried something like this
$now = date(‘h:ia’);
$endTime = date(‘h:ia’, strtotime(“9:00pm”));
$point = date(‘h:ia’, strtotime($now));
if (user == ‘male’) {
return something
} else if ($point > $endTime) {
return user is a female}
else { return something}
namdi 2022-09-26 23:35:19
namdi 2022-09-26 23:34:38

$now = date(‘h:ia’);
$endTime = date(‘h:ia’, strtotime(“9:00pm”));
$point = date(‘h:ia’, strtotime($now));
if (user == ‘male’) {
return something
} else if ($point > $endTime) {
return user is a female}
else { return something}
Here’s what I wrote
amowogbaje 2022-09-27 00:06:47
Hi groupie
amowogbaje 2022-09-27 00:06:58
Nice to be here.
amowogbaje 2022-09-27 00:07:13
Please I need help
amowogbaje 2022-09-27 00:10:15
On ldap configuration. I don’t know what username and password should be. I don’t know how to set the username and password up and
php artisan ldap:test has been failugn6
← prev | next →