Head of Operation (Laravel Developer) at Veechi Technology
Member Since 2 Years Ago
Sylhet, Bangladesh
3,530 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Replied to Artisan::call('backup:run'); Not Working
When I click on the Button "Create New Backup" it load sometime and after a certain time its redirect back with successful alert. but the backup does not created at all.
Replied to Artisan::call('backup:run'); Not Working
But other commands are working fine.
/**
* Create New Backup
*/
public function create()
{
Artisan::call('backup:run');
toast('New Backup created successfully.', 'success')->autoClose(2000)->timerProgressBar();
return redirect()->back();
}
Replied to Artisan::call('backup:run'); Not Working
May be you didn't get my point. let me clear it to you.
Actually I have developed an application. And I want to take backup from my Super Admin section.
https://snipboard.io/1Ya04b.jpg
And that's why I need to do that. So I can create new backup by clicking on the button. @snapey
Replied to Artisan::call('backup:run'); Not Working
Its not even working on my bluehost serve too....
Now what can I do...? @snapey
Replied to Artisan::call('backup:run'); Not Working
So you meant, it will not work here??
Is that will work on server??
Replied to Artisan::call('backup:run'); Not Working
obviously I did.
and as they said php artisan backup:run
working from cmd. but I want to do that from my controller using Artisan::call('backup:run');
this line.
Replied to Artisan::call('backup:run'); Not Working
It's worked from command promt. But I want to do this by my controller.
and its not working.
Started a new Conversation Artisan::call('backup:run'); Not Working
I'm trying to create backup from my system through Spatie Laravel Backup package.
And I'm calling artisan backup:run command from my controller Artisan::call('backup:run');
. But its not working.
Can anyone please help me with this issue??
Replied to Laravel Livewire Realtime Notification & Chatting
Cannot I Implement it without using websocket or pusher...?
Started a new Conversation Laravel Livewire Realtime Notification & Chatting
I want to add realtime Notification & Chatting option in my Laravel Based Project.
So is it possible to do those tasks with Laravel Livewire...? If yes, then please tell me how??