Code Monkey home page Code Monkey logo

Comments (9)

dimsav avatar dimsav commented on May 30, 2024

Have you tried $country->translations ?

from laravel-translatable.

vinkla avatar vinkla commented on May 30, 2024

Currently trying this return Country::all();. Though, I've to implement the following snippet to fetch all data, otherwise it wont output name.

$array = [];
foreach ($countries as $country)
{
    $array[] = [
        'name' => $country->name,
    ];
}

return $array;

from laravel-translatable.

dimsav avatar dimsav commented on May 30, 2024

What about this

CountryTranslation::where('locale', 'en')->lists('name');

from laravel-translatable.

vinkla avatar vinkla commented on May 30, 2024

Yeah, would work but I want to fetch from the default model Country. I've other columns on the Country model that I want to fetch.

from laravel-translatable.

dimsav avatar dimsav commented on May 30, 2024

I'm still trying to understand what you need exactly.

Is this maybe helpful?

$countries = Country::all();

foreach ($countries as $country)
{
    foreach ($country->translations as $translation)
    {
        echo $translation->name;
    }
}

from laravel-translatable.

vinkla avatar vinkla commented on May 30, 2024

What I'm trying to do is not to loop over the data after I've fetched it. I want the model to fetch translation data by default.

I've a table called activities, it has one id and an image column. The other is called activity_translations and it has the required columns and a title column. The title column isn't fetched if I just run return Activity::all(). I need to loop the data and fetch the title column specifically.

from laravel-translatable.

dimsav avatar dimsav commented on May 30, 2024

What do you do with Activity::all() ?

I mean don't you loop the results of Activity::all() somewhere?

What you could do is to fill eloquent's $appends variable and make a custom getter.

from laravel-translatable.

vinkla avatar vinkla commented on May 30, 2024

I return the data to an API as JSON. Didn't know about the $appends variable. That will definitely work.

Thanks for taking the time to answer, much appreciated!

from laravel-translatable.

dimsav avatar dimsav commented on May 30, 2024

You are welcome :)

from laravel-translatable.

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.