Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel get data from multiple tables

<?php

namespace AppModels;

use IlluminateDatabaseEloquentModel;

class Post extends Model
{
    /**
     * Get the comments for the blog post.
     */
    public function comments()
    {
        return $this->hasMany(Comment::class);
    }
}
Source by laravel.com #
 
PREVIOUS NEXT
Tagged: #laravel #data #multiple #tables
ADD COMMENT
Topic
Name
1+5 =