5,000 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.
"psr-4": { "App\": "App/" },
Should probably be
"psr-4": { "App\\": "app/" },
just like that)
Replied to Vuejs: Is It Okay If I Git Ignore The App.js File ?
I used to build assets and push them to production, just like you. Stopped doing that - and happy as hell
Replied to Vuejs: Is It Okay If I Git Ignore The App.js File ?
Yeah, you have a great idea. On server side, you can make simple bash script, with following code.
git pull origin master
npm install
npm run prod
if you don't have any JS daemons. you can add rm -rf node_modules/
at the end, to clean up the unnesecary files from the server.
and you are done)
Replied to Authenticate User With Laravel Not Working Well.
Yeah, lets start with first thing first. How are you authenticating your users? What exactly doesn't work as you expect?
Replied to Seed ManyToMany Relationship Pivot Table With Custom Data
You can place your static data into csv file, and then, in seeder, read that file, and seed tables with whatever you need.
Replied to Problem Setting Install Repository With Laravel
Do you have your composer.json and composer.lock files in the repo?
Replied to Vue.js How Detect If My Component Have Complete All Async Calls ?
You can go as simple as adding a flag to your data. i.e
data: () => ({
isLoading:false
}),
methods: {
load() {
this.isLoading = true;
// here is your calls to API
// once you are done
this.isLoading = false
}
}
this is standard practice, simple and working.