Contents:
Do you think Laravel will thrive in coming years or will slowly and gradually die out soon enough?
Do you think Laravel will thrive in coming years or will slowly and gradually die out soon enough?
2020-04-15 16:13:22

2020-04-15 16:14:14
I’m using Voyager, and when I post image, it is appeared as broken image. But on localhost, everything is working
2020-04-15 16:14:19
how to fix it plz help me
2020-04-15 16:14:44
problem with sym link, on hosting, images are not sending to public folde
Siberfx 2020-04-15 16:18:00
php artisan storage:link on server side
2020-04-15 16:20:08
i have done it on localhost
2020-04-15 16:20:14
on localhost everything is good
2020-04-15 16:20:17
but on hosting not working
2020-04-15 16:25:49
helppp
2020-04-15 16:32:10
Use url(image link) instead of using simlle links.
2020-04-15 16:33:35
My hosting is reg.ru
2020-04-15 16:33:35

2020-04-15 16:33:53
2020-04-15 16:33:35
and in the directory I have added a new htaccess file,
2020-04-15 16:34:25
if I don’t add, my website is not running
2020-04-15 16:38:27
Website usually works without adding htaccess. Check if any other issues are there.
Siberfx 2020-04-15 16:39:32
for shared hostings many crappy things hapening
Siberfx 2020-04-15 16:39:42
even this htaccess matter is one of those
2020-04-15 16:41:30

Try uaibg this in htaccess
Siberfx 2020-04-15 16:44:36
and you can generate a route to run an artisan command if its a shared hosting with no ssh as;
Route::get(‘test’, function() {
Artisan::command(‘storage:link”);
});
Route::get(‘test’, function() {
Artisan::command(‘storage:link”);
});
Gowtham_Boopathiraj 2020-04-15 16:45:18
Hi frds i save data from database(post method) then redirect to list (get method).
The save the data then how to display session flash messgae or any thirs library please tell
Help me
Laravel5.8
Siberfx 2020-04-15 16:45:45
show the code please.
Siberfx 2020-04-15 16:45:57
where the save operation occurs
2020-04-15 16:46:50
Flash message code is written in the page where you redirect the control to after insertibg data in database.
Siberfx 2020-04-15 16:48:18
or if end of code you use redirect(), add a chain as redirect()->with([‘message’ => ‘Message you want to set’, ‘errorCode’ = ‘200’]);
Siberfx 2020-04-15 16:48:21
something like that
Siberfx 2020-04-15 16:49:35
also do not forget to grab the session in view 🙂
2020-04-15 16:50:39
True and flash message code comes in the view where you have redirected to
2020-04-15 16:50:55
Hello everyone
Good evening
I just want to learn laravel from starting thn how could I do
Good evening
I just want to learn laravel from starting thn how could I do
Siberfx 2020-04-15 16:51:28
the first thing you should HAVE TO do is
Siberfx 2020-04-15 16:51:33
visit the documentations of Laravel
Siberfx 2020-04-15 16:51:42
at least basic knowledge is a MUST
2020-04-15 16:51:54
Official documentation
2020-04-15 16:54:23
@Siberfx what is your opinion about lesser scope in Laravel in coming years?
Siberfx 2020-04-15 16:54:41
you mean by ?
2020-04-15 16:55:38
Do you think Laravel will thrive in coming years or will slowly and gradually die out soon enough?
Siberfx 2020-04-15 16:57:21
depends which versionof php and/or laravel version that your using, also fact if you implement it with docker or a shared hosting
Siberfx 2020-04-15 16:57:33
so there are many facts
Siberfx 2020-04-15 16:57:42
I cant say that it will die out 🙂
Siberfx 2020-04-15 16:57:54
but it will become more and more popular.
2020-04-15 16:58:52
Hopefully it does. It still has to reach its peak.
Siberfx 2020-04-15 16:59:29
but people doing a big mistake when they are learning a framework
Siberfx 2020-04-15 16:59:40
they expecting everythin by the help of the components/packages
Siberfx 2020-04-15 16:59:49
but when they have to upgrade it or update
Siberfx 2020-04-15 16:59:59
but the maintainers of the packages deprecating the package/component
Siberfx 2020-04-15 17:00:05
they dont know how to figure it out by themselves
2020-04-15 17:00:33
That is the main problem. Same problem exists with wp.
2020-04-15 17:01:03
Creating custom plugins is a task in itself.
Siberfx 2020-04-15 17:01:16
there are huge amount of packages during the 5.x version already deprecated
Siberfx 2020-04-15 17:01:44
so if a person used bunch of packages an the app is 5.x version, they can’t upgrade it to the latest
Siberfx 2020-04-15 17:01:55
so they can’t achieve the pluses of using laravel