Please help me I installed laravel not done?
install xampp , then download and install composer , where is the problem ?
ok , where is the problem ?
When create new project run on shell cmd not working ?
is there any command to seer where is phpunit configuration file ?
Can i install laravel using wamp?
Does laravel work on php7?
Did you add the environment variables to the windows path?
Are you working with scheduled tasks?
Are you using hardware?
How to do that in my show function?
Do you use Windows 10?
install xampp , then download and install composer , where is the problem ?
Is more easy if you first install and environment like a production server, I suggest you to use wsl, windows subsystem Linux, it’s very easy to install a wsl of Debian
ok , where is the problem ?
screenshot error ..
Make sure composers global vendor bin is in your path
How to assign my rout to any of Middleware’s bets?
UserLevel.php:
if (auth()->check()) {
foreach (auth()->user()->roles as $role) {
$roleId = $role->id;
}
if ($roleId == 3) {
return $next($request);
} elseif ($roleId == 2) {
return redirect(‘author’);
} elseif ($roleId == 1) {
return redirect(‘user’);
}
return redirect(‘/login’);
}
How to assign my rout to any of Middleware’s bets?
UserLevel.php:
if (auth()->check()) {
foreach (auth()->user()->roles as $role) {
$roleId = $role->id;
}
if ($roleId == 3) {
return $next($request);
} elseif ($roleId == 2) {
return redirect(‘author’);
} elseif ($roleId == 1) {
return redirect(‘user’);
}
return redirect(‘/login’);
}
By running the following code the error is ‘not found’ displayed:
Route::get(‘/admin’, ‘HomeController@index’)
->name(‘admin’)
->middleware(‘auth’,’UserLevel’);
Route::get(‘/author’, ‘HomeController@authorPanel’)
->name(‘author’)
->middleware(‘auth’,’UserLevel’);
Route::get(‘/user’, ‘HomeController@UserPanel’)
->name(‘user’)
->middleware(‘auth’,’UserLevel’);
Route::get(‘/admin’, ‘HomeController@index’)
->name(‘admin’)
->middleware(‘auth’,’UserLevel’);
Route::get(‘/author’, ‘HomeController@authorPanel’)
->name(‘author’)
->middleware(‘auth’,’UserLevel’);
Route::get(‘/user’, ‘HomeController@UserPanel’)
->name(‘user’)
->middleware(‘auth’,’UserLevel’);
well, what url are you going to

hello everyone is it errors and how to solve it, please
where’s the error message it looks like there is a job that’s running to look for jobs that failed it didn’t find any and then it exited successfully
Yes I use Laravel 5.7 and 5.8 with php 7.2 and 7.3
Did you add the environment variables to the windows path?
There’s a little thing when you put your project at production mode, that happened to me at digital ocean’s droplet, if you have issues with that feel confident to sendme a private message
The route should pass auth middleware
The same, you can add the Middleware at route file
Are you working with scheduled tasks?
Ok thanks
Thankyou
Queue with supervisor
Are you using hardware? o it’s a kind of deamon?
With beanstalkd

One user my have I have two or more abstraks. And it’s successfully generate. But I have a problem to show all of those abstraks from user’s account, my view shows all abstraks in my table including the abstrak of other user.
I want to show all abstraks of the loged in user in one blade view.
How to do that in my show function?
here is my show function code:
public function show()
{
$abstraks = DB::table(‘abstraks’)->paginate(10);
return view(‘abstrak.status’, compact(‘abstraks’));
}
I have no idea to do that wish any one can help me, Please
compress to zip!
One user my have I have two or more abstraks. And it’s successfully generate. But I have a problem to show all of those abstraks from user’s account, my view shows all abstraks in my table including the abstrak of other user.
I want to show all abstraks of the loged in user in one blade view.
How to do that in my show function?
here is my show function code:
public function show()
{
$abstraks = DB::table(‘abstraks’)->paginate(10);
return view(‘abstrak.status’, compact(‘abstraks’));
}
I have no idea to do that wish any one can help me, Please
Show the table layout for abstraks