Plz help me kisine laravel me tally integration kiya hai?

|
aleemont 2020-09-16 22:06:22
natghi2010 2020-09-16 22:05:19
this issues have been previously discussed

But nothing has been done

natghi2010 2020-09-16 22:07:15
aleemont 2020-09-16 22:06:22
But nothing has been done

its a lot of work

natghi2010 2020-09-16 22:07:49
why lol
sobirjonovs 2020-09-16 22:08:09
how is it alot of work?
natghi2010 2020-09-16 22:09:52
sobirjonovs 2020-09-16 22:08:09
how is it alot of work?

there 3,944 and tracking who posts screenshots and who posts pictures is hard since there a bunch of messages each day

aleemont 2020-09-16 22:10:12
No it’s not
Just put some rules
Nominate a couple of moderators
And don’t allow ppl send freaking screens photos
aleemont 2020-09-16 22:10:52
natghi2010 2020-09-16 22:09:52
there 3,944 and tracking who posts screenshots and who posts pictures is hard since there a bunch of messages each day

Not that much tho
They’re never more than 300 per day

natghi2010 2020-09-16 22:11:12
and honestly, whats the problem with screens photos
aleemont 2020-09-16 22:11:27
Not very readable code
aleemont 2020-09-16 22:11:38
Can’t try it
natghi2010 2020-09-16 22:11:42
the poster loses out,, not the reader
aleemont 2020-09-16 22:11:53
Screenshot are a little better
aleemont 2020-09-16 22:12:08
But they should use pastebin or repl.it
aleemont 2020-09-16 22:12:19
Or github maybe
DcodeArena 2020-09-17 00:12:22
I created a group for tech openings of different stack, so instead of posting job opportunities here and consultancy, join my group and do that there let this group just be for problem solving
DcodeArena 2020-09-17 00:13:02
Inbox me to get the link to the group
MikaET 2020-09-17 00:20:39
https://www.youtube.com/watch?v=wX3WvwbNpa4

Software Engineer Job Interview 😁YouTube
Software Engineer , Web and Software developing | JAVA | PHP
MikaET 2020-09-17 00:26:40
https://www.youtube.com/watch?v=wX3WvwbNpa4

Software Engineer Job Interview 😁YouTube
Software Engineer , Web and Software developing | JAVA | PHP
2020-09-17 01:21:27
Eloquent relationships in Laravel

Laravel Tutorial – Eloquent BelongsTo & HasMany & HasOne RelationshipsYouTube
We will discuss together the eloquent relationships in Laravel and take a look at the documentation to see how to grab the information from it. If you find this video useful share it with your friends to spread the knowledge.

Laravel course on my channel:

Documentation:
https://laravel.com/docs/7.x/eloquent-relationships

Project (github repo):
https://github.com/CodeBrain99/Eloquent_relatioships.git

####################
CHAPTERS IN THIS VIDEO!
####################

0:00 – Intro
04:04 – One-to-One Relationship
15:55 – One-to-Many Relationship
25:03 – Many-to-Many Relationship
33:00 – Wrap up

—– Social —–
Instagram : codebrain99 | https://www.instagram.com/codebrain99/
Twitter : codebrain99 | https://twitter.com/CodeBrain99

#laravel #php #framework #web

NOSTRAPRO7 2020-09-17 01:55:41
Did anyone done socialite with latest version of laravel
Roham0010 2020-09-17 06:12:33
aleemont 2020-09-16 22:12:08
But they should use pastebin or repl.it

Some people don’t like to leave where they are like me to read the codes πŸ˜…
About screenshot I agree
But other things I don’t
Let people manage themselves I guess this democracy here is very good

flyingdragons 2020-09-17 06:44:35
NOSTRAPRO7 2020-09-17 01:55:41
Did anyone done socialite with latest version of laravel

Did with L7

flyingdragons 2020-09-17 06:47:07
https://stackcoder.in/posts/google-twitter-github-facebook-many-other-social-generic-logins-with-php-laravel-socialite
Google, Twitter, GitHub, Facebook & Many Other Social Generic Logins With PHP Laravel Socialite

Google, Twitter, GitHub, Facebook & Many Other Social Generic Logins With PHP Laravel Socialite | StackCoderStackCoder
We will implement Google, Twitter, GitHub, Facebook & Many Other Social Generic Logins With PHP Laravel Socialite. This package is really awesome for all social logins.
2020-09-17 08:21:36
Mistakenly here πŸ˜‚
Bhuvi100 2020-09-17 08:22:12
Btw it was nice
2020-09-17 08:22:17
U r so fast bhuvi, u read out πŸ˜‚
Kishan Thakkar 2020-09-17 08:32:27
Plz help me kisine laravel me tally integration kiya hai ??
irhamir 2020-09-17 08:38:51
Kishan Thakkar 2020-09-17 08:32:27
Plz help me kisine laravel me tally integration kiya hai ??

I don’t understand what “kisine tally” means.

Kishan Thakkar 2020-09-17 08:39:54
Can you help me how to tally integration in laravel ??
SerlyMsGlow 2020-09-17 09:32:33
laravel_discuss-51378.jpg

SerlyMsGlow 2020-09-17 09:33:09
πŸ‘†πŸ‘†siapa tau ada yg membutuhkan loker bisa langsung kirim email
2020-09-17 10:04:19
Guys i need help please 🌹.
I converted my php pure code to laravel but it seems a problem
2020-09-17 10:04:30
This is pure code πŸ‘‡
2020-09-17 10:04:42
public function getComments() {
$query = $this->con->prepare(“SELECT * FROM comments WHERE videoId=:videoId AND responseTo=0 ORDER BY datePosted DESC”);
$query->bindParam(“:videoId”, $id);

$id = $this->getId();

$query->execute();

$comments = array();
while($row = $query->fetch(PDO::FETCH_ASSOC)) {
$comment = new Comment($this->con, $row, $this->userLoggedInObj, $id);
array_push($comments, $comment);
}

return $comments;

}

https://pastebin.com/az2YA2QF

2020-09-17 10:04:52
This is laravel codeπŸ‘‡
2020-09-17 10:05:02
public function getComments() {

$id = $this->getId();
$query= DB::table(‘comments’ )->where([‘videoId’ => $id ,’responseTo’ =>0])->get();
$comments = array();
while( $row = $query) {
$comment = new Comment($row, $this->userLoggedInObj, $id);
array_push($comments, $comment);
}
return $comments ;
}

https://pastebin.com/RPnyL8H8

Laravel – Pastebin.comPastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
sobirjonovs 2020-09-17 10:05:04
2020-09-17 10:04:42
public function getComments() {
$query = $this->con->prepare(“SELECT * FROM comments WHERE videoId=:videoId AND responseTo=0 ORDER BY datePosted DESC”);
$query->bindParam(“:videoId”, $id);

$id = $this->getId();

$query->execute();

$comments = array();
while($row = $query->fetch(PDO::FETCH_ASSOC)) {
$comment = new Comment($this->con, $row, $this->userLoggedInObj, $id);
array_push($comments, $comment);
}

return $comments;

}

https://pastebin.com/az2YA2QF

Use pastebin.com for code sharing

2020-09-17 10:05:50
Ok thanks
2020-09-17 10:21:23
i am waiting
2020-09-17 10:35:02
Probably the problem withe
FETCH_ASSOC
How can i use FETCH_ASSOC in laravel ? I think get() it use it manually
2020-09-17 11:08:12
Ok thanks i will try it
Marwa Abdulmoniem 2020-09-17 11:43:53
Hello guys .. I have the equation for calculating the rate by the method in the code .. but every semester increases the number of subjects, how do I include them in the array
Marwa Abdulmoniem 2020-09-17 11:44:31
laravel_discuss-51395.jpg

Marwa Abdulmoniem 2020-09-17 11:46:26
Note that the number of subjects varies from one semester to another
aleemont 2020-09-17 11:56:14
aleemont 2020-09-16 17:20:20
Can anyone help me with Livewire data binding?

I followed step by step the screencasts in the docs
But if I try to do the same things that he does, I get “Variable [variableName] is undefined”

It looks like the template isn’t communicating with the controller
:/

Anyone?

aleemont 2020-09-17 11:57:37
Marwa Abdulmoniem 2020-09-17 11:44:31

First of all
2 is written two not tow
Then paste your code in pastebin.com and send us the link

aleemont 2020-09-17 11:58:37
In the end
I’m not sure about what you’re trying to do
Why do you use so many variables?
Marwa Abdulmoniem 2020-09-17 12:05:36
aleemont 2020-09-17 11:58:37
In the end
I’m not sure about what you’re trying to do
Why do you use so many variables?

I want to place the variables in an array.
In order not to come back at the end of each semester, return to the number of inputs in order to show me the total of materials as a result of the student

Mr_Classy 2020-09-17 12:59:25
How to datatable sorting in desc order. ?
2020-09-17 13:04:57
Β “order”: [ 1,Β “desc”Β ]
|