Jeremy Kenedy

Results 29 comments of Jeremy Kenedy
trafficstars

To pass user data on load see: See: * https://github.com/jeremykenedy/laravel-chat/blob/master/resources/views/layouts/app.blade.php#L49 * https://github.com/jeremykenedy/laravel-chat/blob/master/resources/assets/js/app.js#L27 To pass user data as a prop see: * https://github.com/jeremykenedy/laravel-chat/blob/master/resources/views/chat.blade.php#L16 * https://github.com/jeremykenedy/laravel-chat/blob/master/resources/assets/js/components/ChatForm.vue#L15

Update your components declarations with the `.default` Like this: * https://github.com/jeremykenedy/laravel-chat/blob/master/resources/assets/js/app.js#L18 * https://github.com/jeremykenedy/laravel-chat/blob/master/resources/assets/js/app.js#L19

What is going on here?

In the template view the extended view call needs to be changed From: `@extends('themes.clean-blog.partials.layout')` To: `@extends('themes.clean-blog.layouts.default')` This is present in file `email.blade.php` which is fixed with pull request #21

Absolutely, Thank you!

Just comment out this line: https://github.com/jeremykenedy/laravel-auth/blob/master/routes/web.php#L50 It will be removed from the project later. Thanks,

Did you try clearing the auto loader with composer dump-autoload > On Nov 16, 2021, at 12:37 AM, livinglegend13 ***@***.***> wrote: > >  > Did you star the repo?...