I am create entity and use case and define my class in rationa rose and now i create custom class in laravel?

|
DesolatorMagno 2019-05-03 01:52:43
Lol, that image show the 80% of the post.
EEEN1993 2019-05-03 06:12:18
Can anybody help to save json data in session
mmosttaffaa 2019-05-03 09:12:43
EEEN1993 2019-05-03 06:12:18
Can anybody help to save json data in session

you can use the serialize() function.
read the php docs below .
https://www.php.net/manual/en/function.serialize.php

EEEN1993 2019-05-03 09:28:21
mmosttaffaa 2019-05-03 09:12:43
you can use the serialize() function.
read the php docs below .
https://www.php.net/manual/en/function.serialize.php

laravel_discuss-5609.jpg
I am a newbie but i tried that
It failed to store json or any other

EEEN1993 2019-05-03 09:29:17
EEEN1993 2019-05-03 09:28:21
I am a newbie but i tried that
It failed to store json or any other

It only returns token

l_alexis 2019-05-03 09:43:11
EEEN1993 2019-05-03 09:28:21
I am a newbie but i tried that
It failed to store json or any other

Try $request->session()->put(‘key’, $profile->toJson())

StanleyMasinde 2019-05-03 10:42:05
EEEN1993 2019-05-03 09:28:21
I am a newbie but i tried that
It failed to store json or any other

Use the usual Auth method. The only thing different is the guard.
By default the guard is ‘user’ that is why we don’t put it in our code. This is how I use custom guards to login

if (Auth::guard(‘custom_guard’)->attempt($email,$password))
{
//login successful
}

Access the current guards user

Auth::(‘custom_guard’)->user();

The only thing different is the guard method.
If you don’t want to include tje guard in your code make this the defaul guard in config

StanleyMasinde 2019-05-03 10:42:49
Don’t create your own framework
EEEN1993 2019-05-03 11:12:07
StanleyMasinde 2019-05-03 10:42:05
Use the usual Auth method. The only thing different is the guard.
By default the guard is ‘user’ that is why we don’t put it in our code. This is how I use custom guards to login

if (Auth::guard(‘custom_guard’)->attempt($email,$password))
{
//login successful
}

Access the current guards user

Auth::(‘custom_guard’)->user();

The only thing different is the guard method.
If you don’t want to include tje guard in your code make this the defaul guard in config

Using this method it returns json but the problem is when you call it in android it will need you to login again while you are already login

StanleyMasinde 2019-05-03 11:23:13
EEEN1993 2019-05-03 11:12:07
Using this method it returns json but the problem is when you call it in android it will need you to login again while you are already login

This is a login method for the web. In the case of android use need to use the api logins where you append auth tokens to you requests.

StanleyMasinde 2019-05-03 11:23:38
Laravel passport
StanleyMasinde 2019-05-03 11:25:17
StanleyMasinde 2019-05-03 11:23:13
This is a login method for the web. In the case of android use need to use the api logins where you append auth tokens to you requests.

I mean this method ia only available for browsers

l_alexis 2019-05-03 11:27:15
EEEN1993 2019-05-03 11:12:07
Using this method it returns json but the problem is when you call it in android it will need you to login again while you are already login

After first login just retreive the auth token, so you can send the token from client to server in headers (Authorization: bearer <token>), and Laravel Passport authomatically detects the user by the token

berto309 2019-05-03 11:52:12
Hi y’all. Is there a way to view your webpages developed on your PC be viewed on your mobile phone. The webapp is still in development stage
StanleyMasinde 2019-05-03 12:02:07
berto309 2019-05-03 11:52:12
Hi y’all. Is there a way to view your webpages developed on your PC be viewed on your mobile phone. The webapp is still in development stage

If you are in the same network input your pc’s LAN IP on your phone’s browser. Don’t forget the port

l_alexis 2019-05-03 12:17:46
berto309 2019-05-03 11:52:12
Hi y’all. Is there a way to view your webpages developed on your PC be viewed on your mobile phone. The webapp is still in development stage

laravel_discuss-5621.jpg
You could use browser dev-tools if you want just to check how will your webpage shown on specific screens

binumathew 2019-05-03 13:34:07
Hello

Is there any Cloud Call Center Service, Which will give you call streaming too ?

I tried Amazon Connect, but there is some problem in recording the calls.. and streaming…

Any Idea?

StanleyMasinde 2019-05-03 13:38:43
l_alexis 2019-05-03 12:17:46
You could use browser dev-tools if you want just to check how will your webpage shown on specific screens

Yeah this is the recommended way but sometimes you want a real phone

StanleyMasinde 2019-05-03 13:40:29
You can also use the remote devices tab on chrome dev tools
rachitbucha 2019-05-03 13:43:19
How to download laravel project from git hub?
rachitbucha 2019-05-03 13:43:23
anyone plz help
mmosttaffaa 2019-05-03 13:59:28
rachitbucha 2019-05-03 13:43:19
How to download laravel project from git hub?

on every github page there is an green button which you can hover over and download the project as zip file

bush7840 2019-05-03 14:54:33
I faced a problem in laravel 5.6

#1055 – Expression #1 of
SELECT list is not in GROUP BY
clause and contains nonaggregated column
‘opaper.notifications.id’ which is not
functionally dependent on columns in
GROUP BY clause; this is incompatible with
sql_mode=only_full_group_by

hey_archer 2019-05-03 15:46:23
Want to start learning laravel testing? Any useful resource?
hey_archer 2019-05-03 15:46:30
Pls suggest
hey_archer 2019-05-03 15:46:48
Other than official documentation
Eskindir 2019-05-03 15:48:01
bush7840 2019-05-03 14:54:33
I faced a problem in laravel 5.6

#1055 – Expression #1 of
SELECT list is not in GROUP BY
clause and contains nonaggregated column
‘opaper.notifications.id’ which is not
functionally dependent on columns in
GROUP BY clause; this is incompatible with
sql_mode=only_full_group_by

set the strict mode to false in the config

rachitbucha 2019-05-03 16:54:49
mmosttaffaa 2019-05-03 13:59:28
on every github page there is an green button which you can hover over and download the project as zip file

mostafa how can i run the project

rachitbucha 2019-05-03 16:55:31
How can i run laravel project downloaded from github
bush7840 2019-05-03 18:29:17
Eskindir 2019-05-03 15:48:01
set the strict mode to false in the config

I try to do that but i couldn’t find the file etc/mysql/my.cnf instead of groupBy i used AppmodelName::destinct()->……

btw Tnx for ur help

Eskindir 2019-05-03 18:33:14
bush7840 2019-05-03 18:29:17
I try to do that but i couldn’t find the file etc/mysql/my.cnf instead of groupBy i used AppmodelName::destinct()->……

btw Tnx for ur help

no problem, no from your database configuration on your project. If you also want to change it on your mysql database you should update the sql mode by removing the full group by. either one would work fine.

mmosttaffaa 2019-05-03 19:32:18
rachitbucha 2019-05-03 16:55:31
How can i run laravel project downloaded from github

just navigate to the project folder and then run “composer install”. after some installation proccess you just run “php artisan serve” the project will be served

mmosttaffaa 2019-05-03 19:33:23
hey_archer 2019-05-03 15:46:48
Other than official documentation

https://www.youtube.com/channel/UC6kwT7-jjZHHF1s7vCfg2CA

ELRCO 2019-05-03 20:53:23
Any senior laravel developer looking for new opportunities?
RdotDev 2019-05-03 21:19:55
ELRCO 2019-05-03 20:53:23
Any senior laravel developer looking for new opportunities?

Yes

ELRCO 2019-05-03 21:41:19
Awesome! Can you please send your CV to elyad@pelcro.com
phoenix9274 2019-05-03 22:08:01
ELRCO 2019-05-03 20:53:23
Any senior laravel developer looking for new opportunities?

Yep

2019-05-03 22:18:33
ELRCO 2019-05-03 20:53:23
Any senior laravel developer looking for new opportunities?

Am here

m0lyna 2019-05-03 22:29:40
Hello, Are there Spanish speaking members?
DesolatorMagno 2019-05-03 22:45:45
Yes
m0lyna 2019-05-03 23:27:56
Contact private plis
vfd14889 2019-05-04 06:57:41
https://sourcemaking.com/design_patterns

Design Patterns and RefactoringSourcemaking
Design Patterns and Refactoring articles and guides. Design Patterns video tutorials for newbies. Simple descriptions and full source code examples in Java, C++, C#, PHP and Delphi.
vfd14889 2019-05-04 07:28:23
https://www.megaweb.ir/s/GTrMMC
برنامه‌نویسی تابعی functional programming چیست

آخرین مقالات دنیای وب و برنامه نویسی را در مگا وب بیابید.مگا وب
ransikoo 2019-05-04 08:03:30
i am create entity and use case and define my class in rationa rose and now i create custom class in laravel ? please help me sor create it and use in my project?
StanleyMasinde 2019-05-04 08:15:06
ransikoo 2019-05-04 08:03:30
i am create entity and use case and define my class in rationa rose and now i create custom class in laravel ? please help me sor create it and use in my project?

You are not clear but I think you want to create an extra Class?

Laravel uses composer autoloading feature to locate classes. The best place to create your class is in the App folder and add the namespace app. Or you can create it anywhere and edit your conposer.json to include your new location

2019-05-04 09:02:36
He
2019-05-05 00:35:24
Hi i need a dedicated server from iran
Holylight1977 2019-05-05 08:17:13
hi i need a strong package for make pdf from heavy html file, anybody can help me?
Dante73 2019-05-05 09:52:28
https://github.com/mikehaertl/phpwkhtmltopdf

GitHub – mikehaertl/phpwkhtmltopdf: A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interfaceGitHub
A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interface – GitHub – mikehaertl/phpwkhtmltopdf: A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP inter…
SkipperStrange 2019-05-05 10:30:34
Has anyone here ever used query file uploader??
|