β prev | next β
Siberfx 2020-05-18 14:59:47
guys I want to ask you PLEASE except “LARAVEL” issues, do not send me private messages.. thank you.
Siberfx 2020-05-18 15:01:50
here I didnt give any name, its a general info :))
2020-05-18 15:02:36

Ive installed composer yet when am creating a new project it tells me this
Siberfx 2020-05-18 15:05:08
type this:
cd pizza
Siberfx 2020-05-18 15:05:31
then use your composer commands.
2020-05-18 15:06:53
Siberfx 2020-05-18 15:05:08
type this:
cd pizza
I want to create the project in htdocs
So cd/htdocs
Then I’ve written the command to create the project
But that error of .json can’t be found is there
Siberfx 2020-05-18 15:07:20
ahh so you failed to create
Siberfx 2020-05-18 15:07:22
sorry didnt see
Siberfx 2020-05-18 15:07:37
then type:
composer -V
2020-05-18 15:08:09
Siberfx 2020-05-18 15:07:37
then type:
composer -V
It’s saying.json not found
2020-05-18 15:11:07
Is there any difference between helper, facade and Di container?
Minakshi_webdev 2020-05-18 15:12:22
cartltech 2020-04-06 17:41:36
Does anyone here have a package on envato or codecanyon?
Dm for business
hi, which kinda package ..
Noorev7 2020-05-18 15:40:04
flyingdragons 2020-05-18 13:11:38
Check Guzzle if your using laravel version below 7.
In Laravel7 check documentation for HTTP Client https://laravel.com/docs/7.x/http-client
It’s a wrapper around Guzzle
Ok thx I’ll try this
oluleye oluseun 2020-05-18 15:42:05
Good to be here
ManatovD 2020-05-18 15:54:22
Hello to all, can you suggest some cool ready auth packages in laravel 6 or 7?
sasha13453 2020-05-18 15:55:19
You have the built-in auth of laravel, do you need something special?
ManatovD 2020-05-18 15:56:12
I read about ready auth system with google facebook etc
ManatovD 2020-05-18 15:56:36
I find one of this, but only for laravel 5
flyingdragons 2020-05-18 16:02:30
ManatovD 2020-05-18 15:56:12
I read about ready auth system with google facebook etc
Then you need to checkout Laravel Socialite
ManatovD 2020-05-18 16:07:05
flyingdragons 2020-05-18 16:02:30
Then you need to checkout Laravel Socialite
Thanks , necessarily i will check ))
Siberfx 2020-05-18 16:55:45
spam is a shit. and such people like to swallow it everyday.
TheGuyi 2020-05-18 20:59:58
Guys how do I return the value of count to my blade template…. Controller has…
$posts = DB::table(‘users’)
->where(‘status’, ‘=’, ‘active’)
->count();
Return view (‘index’,[ ‘posts’ => $posts ]);
In my index.blade.php
@php
Echo $posts;
@endphp
But I get error undefined variable posts
TheGuyi 2020-05-18 21:03:11
TheGuyi 2020-05-18 20:59:58
Guys how do I return the value of count to my blade template…. Controller has…
$posts = DB::table(‘users’)
->where(‘status’, ‘=’, ‘active’)
->count();
Return view (‘index’,[ ‘posts’ => $posts ]);
In my index.blade.php
@php
Echo $posts;
@endphp
But I get error undefined variable posts
I am trying to return the count of all users that have status of active just that number.. any assistance is wel one .
DesolatorMagno 2020-05-18 21:03:25
->count()
TheGuyi 2020-05-18 21:04:03
DesolatorMagno 2020-05-18 21:03:25
->count()
I have it in my controller.. but how to put in my view?
2020-05-18 21:04:59
TheGuyi 2020-05-18 20:59:58
Guys how do I return the value of count to my blade template…. Controller has…
$posts = DB::table(‘users’)
->where(‘status’, ‘=’, ‘active’)
->count();
Return view (‘index’,[ ‘posts’ => $posts ]);
In my index.blade.php
@php
Echo $posts;
@endphp
But I get error undefined variable posts
In blade, {{ $post}}
venkataadithan 2020-05-18 21:05:24
Use blade template {{ $posts }}
rijisoft 2020-05-18 21:05:30
TheGuyi 2020-05-18 21:04:03
I have it in my controller.. but how to put in my view?
send your view directory screenshot
i think its bad refrence
rijisoft 2020-05-18 21:06:13
are you okay that your index file in this directiry?!
Views/index.blade.php ?!!!
TheGuyi 2020-05-18 21:06:53
venkataadithan 2020-05-18 21:05:24
Use blade template {{ $posts }}
Undefined variable
DesolatorMagno 2020-05-18 21:07:02
change the route to ‘/test’ and try to show plain text.
TheGuyi 2020-05-18 21:07:10
rijisoft 2020-05-18 21:06:13
are you okay that your index file in this directiry?!
Views/index.blade.php ?!!!
Yes when I remove this I can see all my html
DesolatorMagno 2020-05-18 21:07:40
and use another file that is no the index.
rijisoft 2020-05-18 21:07:54
TheGuyi 2020-05-18 21:07:10
Yes when I remove this I can see all my html
its not good case to test , please send screenshot of your view directories
TheGuyi 2020-05-18 21:08:58
rijisoft 2020-05-18 21:07:54
its not good case to test , please send screenshot of your view directories

rijisoft 2020-05-18 21:09:21
TheGuyi 2020-05-18 21:08:58
and index.php code
TheGuyi 2020-05-18 21:10:05
DesolatorMagno 2020-05-18 21:07:02
change the route to ‘/test’ and try to show plain text.
Plain text minus count is showing on the view using foreach.. when i try to add total below the table it breaks with undefined variable
DesolatorMagno 2020-05-18 21:10:46
TheGuyi 2020-05-18 21:10:05
Plain text minus count is showing on the view using foreach.. when i try to add total below the table it breaks with undefined variable
you can access another files beside the index.blade?
TheGuyi 2020-05-18 21:11:29
rijisoft 2020-05-18 21:09:21
and index.php code

TheGuyi 2020-05-18 21:11:41
rijisoft 2020-05-18 21:12:06
TheGuyi 2020-05-18 21:11:29
$posts or $users?!
rijisoft 2020-05-18 21:12:20
are you kidding me!?!
TheGuyi 2020-05-18 21:12:34
DesolatorMagno 2020-05-18 21:10:46
you can access another files beside the index.blade?
Let me create a view to test
rijisoft 2020-05-18 21:13:18
TheGuyi 2020-05-18 21:12:34
Let me create a view to test
ππππchange $users to $posts
TheGuyi 2020-05-18 21:14:03
rijisoft 2020-05-18 21:12:20
are you kidding me!?!

TheGuyi 2020-05-18 21:14:31
rijisoft 2020-05-18 21:13:18
ππππchange $users to $posts
Please Look at the screen shots
rijisoft 2020-05-18 21:14:35
DesolatorMagno 2020-05-18 21:14:40
Is hard to help when you show something but you have something diferent.
rijisoft 2020-05-18 21:14:55
DesolatorMagno 2020-05-18 21:14:40
Is hard to help when you show something but you have something diferent.
ππ»ππ»ππ»ππ»ππ»ππ»ππ»
rijisoft 2020-05-18 21:15:28
β prev | next β