Joakim George

Results 9 comments of Joakim George

> @GeoSot I saw Taylor's talk about it, and to be honest I haven't thought about combining them. But it would be the way to go. > > I believe...

@tuandm Welcome. Thanks for laravue! @vanthao03596 Yup. I actually I have it setup on a production app(covid-19 relief), and works pretty smooth.

This route worked for me: ```php Route::post('users', 'UserController@store'); ```

This looks very good! Great work.

1. You're missing some php extensions: mbstring, dom, and simplexml. 2. Since you on PHP 8, it might be causing issues, with the package versions in the composer, so can...

I would love this as well. Actually need this for a project.

> Changing the store url from `https://example.com` to `https://www.example.com` (so adding www) fixed this issue for me. This worked for me but had to remove the 'www'. So it looks...

@fernando1419 I was able to use spatie's laravel tags. https://github.com/spatie/laravel-tags If you still need to do this, I can show you how I implemented it.

ok, here goes. 1. Install laravel tags ### Model ```php use Spatie\Tags\HasTags; ``` ### Controller ```php public function create() { $this->authorize('admin.member-claim.create'); return view('admin.member-claim.create', [ ... 'availableTags' => Tag::getWithType('claimType') // if...