at Haarlem
Member Since 5 Years Ago
Amersfoort
1,305 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.
Replied to Multi-select A BelongsToMany
I've changed my Tags table to:
Schema::create('tags', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('key');
$table->string('value');
$table->timestamps();
});
Using the following stores the vales instead of the ids
public function fields(Request $request)
{
$tags = \App\Tag::all()->pluck('key', 'value');
Now you can use search on the tags as well.
Replied to Multi-select A BelongsToMany
In the example I have a Note and Tags, where the Tas have a BelongsToMany relation.
I wasn't able to store the selected Tag id's in the separate note_tag table therefore added an extra column in the Note model where the id's are stored of the selected tags.
So I get all tags:
public function fields(Request $request)
{
$tags = \App\Tag::all()->pluck('name', 'id');
Then
Multiselect::make('Tags', 'tags')
->options($tags)
->placeholder('Kies een of meerdere tags'),
That worked for me nevertheless I can't add the tags column to the search as it stores the id's. And using a filter with dynamic values is not working as well.
Replied to Mix With TailwindCSS And Purgecss
Install purgecss
npm install laravel-mix-purgecss --save-dev
Go to webpack.mix.js and add:
const mix = require('laravel-mix');
const tailwindcss = require('tailwindcss');
require('laravel-mix-purgecss');
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.options({
processCssUrls: false,
postCss: [ tailwindcss('./tailwind.config.js') ],
}).purgeCss();