I want to join two table with query builder in laravel
07:59 04 Apr 2019

I have Two table T1 and T2. T2 is Making From T1. T1 table:

      ID    Country Name
      1         Bangaldesh
      2        India
      3        USA
      4        UK

T2 table making from T1 ID

      ID    From T1 table C1    From T1 table C2
       1    1(Bangladesh)          2(India)
       2       2(India)            3(USA)
       3     2(India)             1(Bangladesh)
       4     2(India)             1(Bangladesh)

How can i Joining now Two Table for laravel query builder? I need to show country name by ID Thanks for Advance.

laravel inner-join laravel-query-builder