Giter Club home page Giter Club logo

Comments (2)

tzookb avatar tzookb commented on September 16, 2024

the package doesnt return the users any more....

Ill show you how I use it in my controller:

the package now only returns the id of the users,
so it is your responsibilty to fetch them.

As you would see in my controller, I get the messages, than I fetch the
users.

In the view I would do something like this:

$users[ $msg->getSender() ]->username

public function conversation($conv_id) {
$currentUser = Auth::user();
/** @var \Tzookb\TBMsg\Entities\Conversation $conv */
$conv = TBMsg::getConversationMessages($conv_id, $currentUser->id);
TBMsg::markReadAllMessagesInConversation($conv_id,
$currentUser->id);

    $participants = $conv->getAllParticipants();

    //getting all data of participants
    if ( !empty($participants) ) {
        $users = User::whereIn('id',

$participants)->with('profileImage')->get();
foreach ( $users as $key=>$user ) {
$users[ $user->id ] = $user;
}
} else {
$users = [];
}

    return View::make('messages/conv')
        ->with('user', $currentUser)
        ->with('users', $users)
        ->with('conv_id', $conv_id)
        ->with('conv', $conv);
}

On Sun, Jun 15, 2014 at 12:26 AM, nockedout [email protected]
wrote:

So, I'm fetching a message via

$conversations = $this->messages->getUserConversations($user_id)->first();$message = $conversations->getLastMessage();

Result:

object(Tzookb\TBMsg\Entities\Message)[323]
protected 'id' => int 5
protected 'sender' => int 50
protected 'status' => int 1
protected 'self' => int 0
protected 'content' => string 'dfsdfsd' (length=7)
protected 'created' => string '2014-06-14 22:52:25' (length=19)

Now, in my template I'd do something like

{{ $message->sender }}

It's not possible, since all properties on the object are protected. I
assume this is still a bug, right?


Reply to this email directly or view it on GitHub
#3.

Tzook Bar Noy

"Life is what happens while you are busy making other plans"

Phone: +972.52.4625353

Email: [email protected]

from tbmsg.

MaxAIPlayground avatar MaxAIPlayground commented on September 16, 2024

Okay, I understand now. Thanks for your demonstration!

from tbmsg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.