← prev | next →
Rasyidialwee 2019-04-10 04:39:58
Question::all()->where(‘condition’, ‘=’, ‘condition’)->get();
Holylight1977 2019-04-10 05:58:30
praneet81 2019-04-09 21:39:18
But the database is still empty
It’s better use fakerGenerator to make fake records
njenga55 2019-04-10 07:21:34
praneet81 2019-04-09 21:59:05
Anyone?
U will have to do a foreach on ur dataset
foreach($plans as $plan){
Plan::create($plan);
}
njenga55 2019-04-10 07:24:29
berto309 2019-04-10 01:14:34
I’m trying to display questionnaire from a database in carousel form.. When I use the @foreach Blade directive it displays all the questions. Help
Use pagination, Questionnaire::paginate(5):
Or use collection chunk on ur returned variable.
njenga55 2019-04-10 07:28:30
berto309 2019-04-09 03:49:52
Help please…When I display the current time using carbon… It outputs it alright but the time is an hour late

njenga55 2019-04-10 07:29:16
Set ur local time zone , africa/nairobi for my case
ErgashevXurshid 2019-04-10 07:39:29
Hi guys🖐, I have a problem with Ubuntu 18.04
How to auto login to root
ErgashevXurshid 2019-04-10 07:39:51
My device auto login to user🤨
R_IT_Geek 2019-04-10 07:44:18
ErgashevXurshid 2019-04-10 07:39:51
My device auto login to user🤨
did you read the title of the group?
Laravel ?!
How to Enable Automatic Login in Ubuntu
How to Enable Automatic Login in Ubuntu – Make Tech Easier –
Make Tech EasierFor some reason you may want your PC to bypass the login and get to the Desktop as quickly as possible. Here is how to enable automatic login in Ubuntu.
ErgashevXurshid 2019-04-10 07:45:29
Do you know only laravel
2019-04-10 08:49:58
does any one know as good tutorials for laravel and vue js
2019-04-10 08:50:20
or any starter template for a project laravel and vue js
praneet81 2019-04-10 10:33:43
Hi i solved the issue by adding –class flag while seeding
praneet81 2019-04-10 10:33:52
Thanks everyone for you help
Testuserid 2019-04-10 13:32:46
Hello everyone,
Anyone has use the package spatie/laravel-activitylog?
Testuserid 2019-04-10 13:33:32
I got an error in it, when I try to insert my model name in database it shows me the error:
Testuserid 2019-04-10 13:35:07
Ok sorry the error solved….
Thanks
R_IT_Geek 2019-04-10 13:44:42
hi
Pagination not showing on mygift view page!!!
whyyyyyyyyyy?
this controller is:
$gifts = Gift::paginate(3);
return view(‘userPanel.index’, compact([ ‘gifts’]));
and in mygift view :
<div class=”row text-center pagination-centered”>
{{$gifts->links()}}
</div>
Testuserid 2019-04-10 13:45:26
R_IT_Geek 2019-04-10 13:44:42
hi
Pagination not showing on mygift view page!!!
whyyyyyyyyyy?
this controller is:
$gifts = Gift::paginate(3);
return view(‘userPanel.index’, compact([ ‘gifts’]));
and in mygift view :
<div class=”row text-center pagination-centered”>
{{$gifts->links()}}
</div>
List is showing?
R_IT_Geek 2019-04-10 13:46:20
Testuserid 2019-04-10 13:45:26
List is showing?
yes, it shows the number I specified.
bnaminen 2019-04-10 17:16:14
Looking for expert in OpenCart and Laravel, and has at least 3-5 yr exp. The candidate must have experience in eCommerce Technologies, Shopping Cart, Theme Development, Module/Plugin Development etc
bnaminen 2019-04-10 17:18:21
For BANGALORE location.Any reference would be appreciated
Marvixino 2019-04-10 18:08:26
How to build an API to serve frontend, backend and mobile with laravel?
Tutorial?
praneet81 2019-04-10 18:22:02
R_IT_Geek 2019-04-10 13:44:42
hi
Pagination not showing on mygift view page!!!
whyyyyyyyyyy?
this controller is:
$gifts = Gift::paginate(3);
return view(‘userPanel.index’, compact([ ‘gifts’]));
and in mygift view :
<div class=”row text-center pagination-centered”>
{{$gifts->links()}}
</div>
Why are you doing this [‘gifts’] when your compacting it?
l_alexis 2019-04-10 18:32:21
praneet81 2019-04-10 18:22:02
Why are you doing this [‘gifts’] when your compacting it?
this code is correct, first param may be an array
Marvixino 2019-04-10 19:45:39
Marvixino 2019-04-10 18:08:26
How to build an API to serve frontend, backend and mobile with laravel?
Tutorial?
?!
richitorres 2019-04-10 20:04:25
Marvixino 2019-04-10 18:08:26
How to build an API to serve frontend, backend and mobile with laravel?
Tutorial?
you can build your API with laravel, laravel have a API routes. You only build your API controllers
richitorres 2019-04-10 20:05:09
and you can use a vue.js for consume your API
richitorres 2019-04-10 20:05:40
vue js comes integrated on laravel project
richitorres 2019-04-10 20:05:45
you onlye installs node js
richitorres 2019-04-10 20:05:54
only*
richitorres 2019-04-10 20:06:04
if you hace a multiple endpoints
richitorres 2019-04-10 20:06:13
you can use GRAPHQL
Marvixino 2019-04-10 20:07:11
richitorres 2019-04-10 20:04:25
you can build your API with laravel, laravel have a API routes. You only build your API controllers
Great, is there any basic tutorial for the structure?
richitorres 2019-04-10 20:07:32
yeah on the laravel documentation
richitorres 2019-04-10 20:07:49
you can read about vue.js integration
richitorres 2019-04-10 20:09:43
Marvixino 2019-04-10 20:07:11
Great, is there any basic tutorial for the structure?
https://laravel.com/docs/5.7/eloquent-resources
Laravel – The PHP Framework For Web Artisans –
LaravelLaravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
Marvixino 2019-04-10 20:10:27
richitorres 2019-04-10 20:09:43
https://laravel.com/docs/5.7/eloquent-resources
I will check it, thanks.
Is there JWT auth out of the box?
richitorres 2019-04-10 20:12:50
Marvixino 2019-04-10 20:10:27
I will check it, thanks.
Is there JWT auth out of the box?
you can use this library https://github.com/tymondesigns/jwt-auth
GitHub – tymondesigns/jwt-auth: 🔐 JSON Web Token Authentication for Laravel & Lumen –
GitHub🔐 JSON Web Token Authentication for Laravel & Lumen – GitHub – tymondesigns/jwt-auth: 🔐 JSON Web Token Authentication for Laravel & Lumen
2019-04-10 20:29:00
What is the difference between jwt and laravel passport which one I have to use?
Marvixino 2019-04-10 20:34:13
2019-04-10 20:29:00
What is the difference between jwt and laravel passport which one I have to use?
I think is the same ..
Marvixino 2019-04-10 20:34:17
Marvixino 2019-04-10 20:34:32
https://laravel.com/docs/5.8/passport#consuming-your-api-with-javascript
Laravel – The PHP Framework For Web Artisans –
LaravelLaravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
Marvixino 2019-04-10 20:35:09
But, is there user management base on the passport?
praneet81 2019-04-10 20:36:04
2019-04-10 20:29:00
What is the difference between jwt and laravel passport which one I have to use?
Jwt provides you a token and it’s pretty secure, passport is a complete oauth2 solution
Marvixino 2019-04-10 21:06:39
oauth2 can use jwt
senhorY 2019-04-10 21:09:30
Hey, anyone had an issue where laravel renders a page without the stylesheet and, after few milliseconds loads the stylesheet?
senhorY 2019-04-10 21:09:48
I don’t hace a clue of the problem
KORANG 2019-04-10 21:53:31
Hello guys
How can I convert MATLAB m file code to PHP code?
Does somebody know?
DivByZero 2019-04-10 21:58:54
KORANG 2019-04-10 21:53:31
Hello guys
How can I convert MATLAB m file code to PHP code?
Does somebody know?
you can’t convert matlab scripts to php but you can Invoke matlab code from php using matlab’s compiler
← prev | next →