Is that important to use the repository design pattern in laravel?

|
bunthoeunsoun 2019-12-16 19:23:54
2019-12-16 19:23:24
I Asked everyone in this group

ok brother

skys215 2019-12-16 19:24:25
2019-12-16 19:16:07
Is that important to use the repository design pattern in laravel?

depend on your scale of the program

2019-12-16 19:24:26
bunthoeunsoun 2019-12-16 19:23:54
ok brother

Do you know the answer of my question?

bunthoeunsoun 2019-12-16 19:26:45
2019-12-16 19:24:26
Do you know the answer of my question?

sorry i don’t know

2019-12-16 19:30:01
2019-12-16 19:24:26
Do you know the answer of my question?

what you asking

πŸ…³πŸ…°οΈπŸ…½πŸ†‚ 2019-12-16 20:36:27
2019-12-16 19:16:07
Is that important to use the repository design pattern in laravel?

you mean using control version git?

2019-12-16 20:43:42
πŸ…³πŸ…°οΈπŸ…½πŸ†‚ 2019-12-16 20:36:27
you mean using control version git?

No. The repository pattern in laravel. You don’t know that?

drive_01 2019-12-16 21:41:23
Hi does anyone have issues about php7.3 and highload cpu process?
drive_01 2019-12-16 21:41:51
laravel_discuss-21400.jpg

farshadfb 2019-12-16 21:46:40
2019-12-16 19:16:07
Is that important to use the repository design pattern in laravel?

depends on how you use it you can simply breake the orm and duplicate that but you can make your code more clean and readable depends on how you implement that

Fatima 2019-12-16 22:23:20
codetrend 2019-12-16 15:58:52
try this , remove the composer.lock , then run composer update

My problem solved, Thanks for your attention ☺️🌹

EthCOP 2019-12-16 22:37:24
Hello everybody !
EthCOP 2019-12-16 22:37:41
someone can helpme with this ?
EthCOP 2019-12-16 22:37:42
invalid signature on email verification. Laravel 6 (https://github.com/laravel/framework/issues/30850)
Laravel Version: 6.0.x
PHP Version: 7.2.24
Database Driver & Version: mysql Ver 15.1 Distrib 10.4.8-MariaDB
Hello guys, resently i post the same bug , but it was declined by the versions. (https://github.com/laravel/framework/issues/30594)
I did update my php and laravel workspace to the lasted versions but i got the same error !
I did set the .env file
APP_ENV=production
APP_URL=https://domain.co/
APP_USE_HTTPS=true
in the AppServiceProvider
public function boot(UrlGenerator $url)
{
URL::forceScheme(‘https’);
}
In web.php and api.php
if (App::environment(‘production’)) {
URL::forceScheme(‘https’);
}
In UrlGentator file:
$url = str_replace(“http://”,”https://”, $url);
and in the TrustProxies file
protected $proxies = ‘*’;
but I still getting the same error (403 | Invalid signature.) on the email verification!
someone can helpme ?
The lastes pages that i visit :
https://github.com/laravel/framework/issues/26930
https://github.com/laravel/framework/issues/25501
https://stackoverflow.com/questions/52917152/laravel-5-7-email-verification-throws-403
https://stackoverflow.com/questions/52525958/signed-route-for-email-verification-does-not-pass-signature-validation
https://laracasts.com/discuss/channels/laravel/hitting-403-page-when-clicking-verify-link-in-email-using-new-laravel-verification-57
https://laracasts.com/discuss/channels/laravel/email-verification-403-invalid-signature?page=0#reply=553418

invalid signature on email verification. Laravel 6 Β· Issue #30850 Β· laravel/frameworkGitHub
Laravel Version: 6.0.x PHP Version: 7.2.24 Database Driver & Version: mysql Ver 15.1 Distrib 10.4.8-MariaDB Hello guys, resently i post the same bug , but it was declined by the versions. (…
EthCOP 2019-12-16 22:38:01
https://stackoverflow.com/questions/59362592/invalid-signature-on-email-verification-laravel-6-github-30850

invalid signature on email verification. Laravel 6 (github #30850)Stack Overflow
Laravel Version: 6.0.x

PHP Version: 7.2.24

Database Driver & Version: mysql Ver 15.1 Distrib 10.4.8-MariaDB

Hello guys, resently i post the same bug , but it was declined by the versions. (

EthCOP 2019-12-16 22:44:19
πŸ˜‚ ok ! thnks !
EthCOP 2019-12-16 22:44:35
EthCOP 2019-12-16 22:38:01
https://stackoverflow.com/questions/59362592/invalid-signature-on-email-verification-laravel-6-github-30850

Its my question !

LiceaPacheco 2019-12-16 23:15:33
Someone around here has used Laravel websock
LiceaPacheco 2019-12-17 00:19:33
When i lunch the artisan command i get this
LiceaPacheco 2019-12-17 00:20:19
laravel_discuss-21421.jpg

LiceaPacheco 2019-12-17 00:24:14
Are you sure
LiceaPacheco 2019-12-17 00:24:32
How can i test if i work
LiceaPacheco 2019-12-17 00:39:52
Yes it Is serve no localhost
LiceaPacheco 2019-12-17 00:41:41
but I don’t know suppose to tell me started or something
2019-12-17 07:30:11
how to compare data date1 and date2?
if date1(deposit = 100) = date2(deposit = 100) else not active
if date1(deposit = 100) != date2(deposit = 50) else active
2019-12-17 10:07:27
Hey guys, who can help me with referral system
skys215 2019-12-17 10:12:47
2019-12-17 10:07:27
Hey guys, who can help me with referral system

it’s not laravel problem

2019-12-17 10:15:08
I need 6 levels referral system
skys215 2019-12-17 10:16:37
I think that has nothing to do with Laravel, no matter what level it has
2019-12-17 10:19:08
skys215 2019-12-17 10:16:37
I think that has nothing to do with Laravel, no matter what level it has

Ok, it is cool but I beginner

rethdaro 2019-12-17 13:30:22
Laravel display category which has post?
2019-12-17 13:46:22
rethdaro 2019-12-17 13:30:22
Laravel display category which has post?

use relationships.eg $post = Post::with(‘category’)->get();

T_r_a_p_s_o_u_l 2019-12-17 16:47:25
Good afternoon guys
I’m trying to update data in a database and using modal and Ajax

But it keeps updating the first row in the database

T_r_a_p_s_o_u_l 2019-12-17 16:47:52
Please can anyone help me??
T_r_a_p_s_o_u_l 2019-12-17 16:49:44
laravel_discuss-21473.jpg

rethdaro 2019-12-17 17:26:47
2019-12-17 13:46:22
use relationships.eg $post = Post::with(‘category’)->get();

it’s show only post, But I can not get only the category which has post insided

2019-12-17 17:41:47
show me ua blade
2019-12-17 17:43:53
rethdaro 2019-12-17 17:26:47
it’s show only post, But I can not get only the category which has post insided

if i understand you..you want to show the category associated by a post right??

rethdaro 2019-12-17 18:10:11
2019-12-17 17:43:53
if i understand you..you want to show the category associated by a post right??

laravel_discuss-21483.jpg

LiceaPacheco 2019-12-17 18:40:36
2019-12-17 07:30:11
how to compare data date1 and date2?
if date1(deposit = 100) = date2(deposit = 100) else not active
if date1(deposit = 100) != date2(deposit = 50) else active

First of all there you are not comparing, you are assigning, for another place, for the dates use whereMonth, whereYears, whereDays, whereTime if I remember correctly for the hours and minutes. I hope it serves you, anything asks

AntarSidgi 2019-12-17 18:42:19
https://pastebin.com/fapKHp70

[PHP] Laravel Erro – Pastebin.comPastebin
AntarSidgi 2019-12-17 18:42:35
AntarSidgi 2019-12-17 18:42:19
https://pastebin.com/fapKHp70

laravel_discuss-21487.jpg

Mramoris 2019-12-17 19:20:01
Hello everyone, for some reason my debugbar () only works in the wep file, but there are no controllers in the actions
T_r_a_p_s_o_u_l 2019-12-17 19:21:42
T_r_a_p_s_o_u_l 2019-12-17 16:47:25
Good afternoon guys
I’m trying to update data in a database and using modal and Ajax

But it keeps updating the first row in the database

Any help please

sherealikhan 2019-12-17 20:14:24
Guys would recommend me which company’s VPS server is better for managing software subscription?
skys215 2019-12-17 20:47:10
T_r_a_p_s_o_u_l 2019-12-17 16:47:52
Please can anyone help me??

I assumed that you need to pass the action by route

electrofairy 2019-12-18 05:01:18
Hey guys! Is there a way to clear laravel’s file cache during the unit tests? Neither $this->artisan(‘cache:clear’); nor Cache::flush(); not working…
skys215 2019-12-18 05:46:19
laravel_discuss-21514.jpg

rebory 2019-12-18 07:07:48
how i can connect mysql database from another server/cpanel in laravel
beerstory19 2019-12-18 07:12:10
2019-12-17 07:30:11
how to compare data date1 and date2?
if date1(deposit = 100) = date2(deposit = 100) else not active
if date1(deposit = 100) != date2(deposit = 50) else active

Use == instead of =?

|