← prev | next →
Pro 2021-03-31 13:40:47
Blueman45 2021-03-31 13:37:48
Not all the features…. Just basic
Well 💁♂ https://laravel.com/docs/8.x
foulla_sam 2021-03-31 13:41:47
Blueman45 2021-03-31 13:37:48
Not all the features…. Just basic
Understand the basics will take you more than 2 days because laravel has lot of features:
– routing
– blade templating
– eloquent for interacting with database
– authentication
– factories, seeders and migrations
And many other
Blueman45 2021-03-31 13:42:19
foulla_sam 2021-03-31 13:41:47
Understand the basics will take you more than 2 days because laravel has lot of features:
– routing
– blade templating
– eloquent for interacting with database
– authentication
– factories, seeders and migrations
And many other
Thanks.
foulla_sam 2021-03-31 13:45:06
Blueman45 2021-03-31 13:42:19
Thanks.
U are welcome
natghi2010 2021-03-31 14:54:02
foulla_sam 2021-03-31 13:41:47
Understand the basics will take you more than 2 days because laravel has lot of features:
– routing
– blade templating
– eloquent for interacting with database
– authentication
– factories, seeders and migrations
And many other
Only the first 3 + migration are basic
GistOf 2021-03-31 15:02:38
Fru Azeh 2021-03-31 13:32:43
Hi, I have created a Laravel course. For beginners to advanced. It has just started. So if you want to learn programming in Laravel. Check out the playlist and subscribe if you want to follow the course to the end.
https://www.youtube.com/playlist?list=PLZmmaAg9qRMi6CKuIjGIJ2BknQGcU0NJ1
Buy a proper microphone and improve on you intro. Planning helps. Don’t waste time telling people how to google
Pro 2021-03-31 17:36:51
And tell now I didn’t touch laravel 8 😐💔
Fru Azeh 2021-03-31 17:45:08
GistOf 2021-03-31 15:02:38
Buy a proper microphone and improve on you intro. Planning helps. Don’t waste time telling people how to google
Thanks man
littlefish111 2021-03-31 17:45:15
What do I missing here?
GistOf 2021-03-31 17:48:55
Fru Azeh 2021-03-31 17:45:08
Thanks man
You can also try to add an angle to make your series more targeted. There are many introductions to Laravel. What sets yours apart. One way you can do it is targeting a certain type of user, e.g. Introduction To Laravel For Front-end Developers
GistOf 2021-03-31 17:49:37
Or for people coming from a JS background
GistOf 2021-03-31 17:51:01
If you don’t want to do that, you can go ahead and add your voice to the noise that is crowding the space already. Unfortunately, it may slow down the growth of your channel
GistOf 2021-03-31 17:51:39
Be prepared to invest a considerable amount of effort, time and resources
Fru Azeh 2021-03-31 17:54:39
GistOf 2021-03-31 17:51:39
Be prepared to invest a considerable amount of effort, time and resources
Waoh I appreciate.
You seem to have great experience in this!
GistOf 2021-03-31 17:56:12
LOL! Actually, I don’t have experience in being a YouTuber. I have experience in being a content consumer though
GistOf 2021-03-31 17:57:02
Fru Azeh 2021-03-31 17:54:39
Waoh I appreciate.
You seem to have great experience in this!
Look at it as feedback from an end user, not a fellow youtuber
Fru Azeh 2021-03-31 18:10:22
GistOf 2021-03-31 17:57:02
Look at it as feedback from an end user, not a fellow youtuber
Well, thanks.
ArchRaphel 2021-03-31 20:39:22
I have a suggestion.
Can someone do a very comprehensive video of laravel. Admin should check the videos if they are comprehensive and direct.
Then it should be posted and pin to the channel.
I have checked YouTube, some of the laravel videos are not comprehensive enough
w3lifer 2021-03-31 20:42:56
ArchRaphel 2021-03-31 20:39:22
I have a suggestion.
Can someone do a very comprehensive video of laravel. Admin should check the videos if they are comprehensive and direct.
Then it should be posted and pin to the channel.
I have checked YouTube, some of the laravel videos are not comprehensive enough
Laracast
ArchRaphel 2021-03-31 20:44:18
w3lifer 2021-03-31 20:42:56
Laracast
Okay. Thank you.
littlefish111 2021-03-31 23:55:01
littlefish111 2021-03-31 17:45:15
What do I missing here?
By the way I found out what the issue was, you have to give the first day of a month, then it will work
littlefish111 2021-03-31 23:55:11
CarbonCarbon::createFromFormat(‘m/d’,’02/01′)->monthName
One Trust 2021-04-01 00:23:19
Unexpected ‘Gate’ (T_STRING), expecting function (T_FUNCTION) or const (T_CONST)
I get the error when add the following in my AuthServiceProvider as instruction provided when am using WebDevEtcBlogEtc package which help me to add blog in existing website
Gate::define(WebDevEtcBlogEtcGatesGateTypes::MANAGE_BLOG_ADMIN, static function(?Model $admin){
// Implement your logic here, for example:
return$user&&$user->email===’your-[email protected]’;
// Or something like $user->is_admin === true
});
How to solve this
maescode 2021-04-01 00:50:44
Good day. I’m trying to point to files in storage folder for download using anchor <a href=”{{$data->filepath}}”>Download</a>. It giving page not found instead of downloading the file. Please any suggestion.
Carlos Escobar 2021-04-01 01:41:15
maescode 2021-04-01 00:50:44
Good day. I’m trying to point to files in storage folder for download using anchor <a href=”{{$data->filepath}}”>Download</a>. It giving page not found instead of downloading the file. Please any suggestion.
I think you can’t download the file directly from the storage path
Carlos Escobar 2021-04-01 01:42:10
You need to send the file as a response from the controller
Carlos Escobar 2021-04-01 01:44:37
Uhh, reading the docs it says you actually can do it the way you say, but it requires to create a symbolic to link from the storage folder to the /public/ folder, more info here: https://laravel.com/docs/8.x/filesystem#file-urls
naolarega 2021-04-01 06:40:42
One Trust 2021-04-01 00:23:19
Unexpected ‘Gate’ (T_STRING), expecting function (T_FUNCTION) or const (T_CONST)
I get the error when add the following in my AuthServiceProvider as instruction provided when am using WebDevEtcBlogEtc package which help me to add blog in existing website
Gate::define(WebDevEtcBlogEtcGatesGateTypes::MANAGE_BLOG_ADMIN, static function(?Model $admin){
// Implement your logic here, for example:
return$user&&$user->email===’your-[email protected]’;
// Or something like $user->is_admin === true
});
How to solve this
i won’t take you seriously 😂
faramarzii_amir 2021-04-01 09:09:03
Hello friends, good morning
I do not want to use all lumen facades
How can I add only the facades I want to the project?
If I use the variable $ app-> withFacades (), all facades will be added to the project, which will slow down. Thanks
faramarzii_amir 2021-04-01 09:43:24
help me 😞
Unknownuser009 2021-04-01 10:13:53
How to upload images in livewire with original name?
Unknownuser009 2021-04-01 10:14:18
Save image with original name..plz send me code if anybody have?
profsr123 2021-04-01 11:27:06
How to make an api call continiously in laravel
profsr123 2021-04-01 11:27:38
I mean that when a new order comes it has to be pushed?
shinejemi 2021-04-01 11:43:07
Is making more than 20 tables is a lot more for an e-commerce website?
← prev | next →