Contents:
Where can I get a template for a Laravel store?
how to create auth and UI in laravel 8 ?
If we are getting it for free, do we have a right to complain?
Is it fair that the community built a number of scaffolding packages only to get blindsided like this?
Where can I get a template for a Laravel store?
how to create auth and UI in laravel 8 ?
If we are getting it for free, do we have a right to complain?
Is it fair that the community built a number of scaffolding packages only to get blindsided like this?
MonkeyDFeussom 2020-09-10 19:46:03
2020-09-10 19:43:10
like that?
and name your route please
MonkeyDFeussom 2020-09-10 19:46:14
MonkeyDFeussom 2020-09-10 19:40:21
Route::post(‘register’, ‘RegistrationController@store’)->name(‘register’);
As I sent u here
2020-09-10 19:46:44
now i get 404 with blue background
2020-09-10 19:47:01
well the laravel is called so that is some progress 😀
2020-09-10 19:48:14

this is how it looks now
MonkeyDFeussom 2020-09-10 19:53:51
2020-09-10 19:48:14
this is how it looks now
ok
MonkeyDFeussom 2020-09-10 19:54:06
2020-09-10 19:47:01
well the laravel is called so that is some progress 😀
ok now check that all
the_peace_lover 2020-09-10 19:56:45
Also check route:list
2020-09-10 19:58:33
I restarted the pc and now I get Target class [RegistrationController] does not exist.
2020-09-10 19:59:05
so I will try with the syntax i used for showing the form with naming
MonkeyDFeussom 2020-09-10 19:59:25
2020-09-10 19:59:05
so I will try with the syntax i used for showing the form with naming
not getting u
2020-09-10 20:00:22
because that was the error that i got earlier with this syntax, in laravel 8 you should use
Route::get(‘/register’, [RegistrationController::class, ‘create’]);
Route::get(‘/register’, [RegistrationController::class, ‘create’]);
2020-09-10 20:00:38
instead of syntax with @
2020-09-10 20:02:26

ok routing seems to be working, but now I get this
2020-09-10 20:02:38
for this line :
$user = User::create(request([‘name’, ’email’, ‘password’]));
$user = User::create(request([‘name’, ’email’, ‘password’]));
2020-09-10 20:03:30
thank you very much
2020-09-10 20:07:53
now I got it work finally 🙂 thank you everyone
2020-09-10 20:08:27
it turned out that artisan wasnt clearing the cache even when I reloaded it in cmd
2020-09-10 20:09:00
so I was trying milion of things but they didint applied
fsalesb 2020-09-10 20:09:08
how I pass via ajax with response () -> json (); the html code ..
I’m doing it this way
I’m doing it this way
fsalesb 2020-09-10 20:09:48

fsalesb 2020-09-10 20:10:12

the_peace_lover 2020-09-10 20:17:53
success: function (result) {
$(‘#div_id’).html(result.html);
},
$(‘#div_id’).html(result.html);
},
the_peace_lover 2020-09-10 20:18:04
try this on your ajax call
2020-09-10 21:50:13
Where can I get a template for a Laravel store?
heisenberg0123 2020-09-10 21:50:54
does anyone here knows about nuxt.js? I have a problem with it
fred 2020-09-10 21:51:38
heisenberg0123 2020-09-10 21:50:54
does anyone here knows about nuxt.js? I have a problem with it
state the problem
heisenberg0123 2020-09-10 21:52:18
I was trying to put glide.js on nuxt but I fail
heisenberg0123 2020-09-10 21:52:39

GistOf 2020-09-10 22:35:31
Bootstrap doesn’t do this to us: https://tailwindui.com/pricing
IBRAHIMEVARISRE 2020-09-10 23:16:41
I need help in laravel to autopopulate my table incident when I select material_id
2020-09-10 23:29:22
hey, its me again 🙁 anyone got any hints why laravel returns ‘target class controller does not exist’? it’s a fresh one with just one return view method, got no clue why it doesnt want to work again
2020-09-10 23:30:02

just these two routes
2020-09-10 23:30:21

for this controller
2020-09-10 23:31:00
im sure it is in the right folder because i have only one main controller folder
cristian_madeira 2020-09-10 23:33:45
What’s difference between db seeder and model factory?
2020-09-11 00:54:52
Am looking on a laravel project there are about 7 roles but the URL after login is the same /homepage/ but when any user logs in the home page is URL is the same but the homepage blade or vuejs files that load are different depending on the role name … What authentication system is been used I think API routing is been used not web routes the pages are in vuejs backend laravel
2020-09-11 00:55:38
Any ideas where to look at first
2020-09-11 00:58:56
I want to create a homepage for a different role
praneet81 2020-09-11 01:49:41
2020-09-11 00:54:52
Am looking on a laravel project there are about 7 roles but the URL after login is the same /homepage/ but when any user logs in the home page is URL is the same but the homepage blade or vuejs files that load are different depending on the role name … What authentication system is been used I think API routing is been used not web routes the pages are in vuejs backend laravel
Have a look at this package https://github.com/JosephSilber/bouncer
It’s perfect for creating roles and permissions
GitHub – JosephSilber/bouncer: Eloquent roles and abilities. – GitHub
Eloquent roles and abilities. Contribute to JosephSilber/bouncer development by creating an account on GitHub.
Eloquent roles and abilities. Contribute to JosephSilber/bouncer development by creating an account on GitHub.
2020-09-11 05:21:31
praneet81 2020-09-11 01:49:41
Have a look at this package https://github.com/JosephSilber/bouncer
It’s perfect for creating roles and permissions
Thanks let me look at it will give feedback
jung_doeng 2020-09-11 08:00:47
hai, i’m new in laravel
i’m got stuck with Auth::routes()
undefined type
i’m got stuck with Auth::routes()
undefined type
jung_doeng 2020-09-11 08:01:10
someone can help to resolve my problem, please
GistOf 2020-09-11 08:30:58
2020-09-10 19:43:10
like that?
Your action should be in quotes
GistOf 2020-09-11 08:38:47
cristian_madeira 2020-09-10 23:33:45
What’s difference between db seeder and model factory?
A seeder seeds the database. A factory is a template for seeding the database. A seeder can seed the database using a factory or otherwise
rebory 2020-09-11 09:16:44
how to create auth and UI in laravel 8 ?
GistOf 2020-09-11 09:36:24
rebory 2020-09-11 09:16:44
how to create auth and UI in laravel 8 ?
You do it with Jetstream now
GistOf 2020-09-11 09:38:18
I think Taylor and the core team lost the plot with Laravel 8. It’s akin to Windows 8 in that it comes with some major updates, some very useful things and frustrating things to match
GistOf 2020-09-11 09:42:03
Sadly, in this era of tech sheep, they will get away with imposing their preferences on us. That raises a number of moral and philosophical questions about open source projects
GistOf 2020-09-11 09:45:17
Questions like:
Is it OK for a FOSS developer to go against the will of the majority in the community built around the developer’s FOSS project?
If we are getting it for free, do we have a right to complain?
Is it fair that the community built a number of scaffolding packages only to get blindsided like this?
Is it OK for a FOSS developer to go against the will of the majority in the community built around the developer’s FOSS project?
If we are getting it for free, do we have a right to complain?
Is it fair that the community built a number of scaffolding packages only to get blindsided like this?