Giter VIP home page Giter VIP logo

Comments (5)

RomainLanz avatar RomainLanz commented on July 19, 2024

@bandgeekndb

If you write on your custom getter a call to your presenter is it good for you?

from presenter.

laics1984 avatar laics1984 commented on July 19, 2024

hi @bandgeekndb , i am running in to the same issue too. Mind sharing how you did with the custom getter method? sorry im new to laravel and what is custom getter? Thanks.

from presenter.

usrNotFound avatar usrNotFound commented on July 19, 2024

Hi @laics1984 have a look at this https://laravel.com/docs/5.3/eloquent-mutators

from presenter.

laics1984 avatar laics1984 commented on July 19, 2024

Sorry, i am still unable to get it to work. Can you please have a look at my code? The select option text is still blank. Thanks.


public function setFullNameAttribute(){
    	$this->attributes['fullname'] = $this->first.' '.$this->last;
}

in blade.php:
<div class="col-md-5">
     {!! Form::select('Page', ['' => ''] + $pages->all()->pluck('fullname', 'id')->toArray(), null, ['class' => 'form-control']) !!}
</div>

from presenter.

usrNotFound avatar usrNotFound commented on July 19, 2024

@laics1984 just return
public getFullNameAttribute { return $this->first . ' ' . $this->last}; But not sure why you want to do this in model. If you are using pesenter all you have to do is public function fullName() { return ucfirst($this->entity->first) . ' ' . ucfirst($this->entity->last);

from presenter.

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.