dimanche 4 mars 2018

Laravel Mutator in query builder?

I've no idea how to define two field as one field using mutator in query builder here's my code

$model = LoanInformation::select( 
                'basic_information.first_name', 'basic_information.last_name',
                'loan_information.id', 'loan_information.tenor'
            )->join(
                'basic_information', 'loan_information.user_id', '=', 'basic_information.user_id'
            )->where(
                'loan_information.status', 'funding'
            )->paginate(9);

How can I make first_name and last_name define as name and add statement on it which return strtoupper(first_name) and strtoupper(last_name)



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2CXw13e
via IFTTT

Aucun commentaire:

Enregistrer un commentaire