Varaporn Thumvachiraporn has worked in the Information Technology industry since 2002. Varaporn began their career as an Account Executive at jobsDB, and later held two Account Supervisor roles at the same company. In 2020, they joined GetLinks as an Information Technology Recruiter.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Category;
use App\Post;
use App\Tag;
class HomeController extends Controller
{
public function index()
{
$categories = Category::all();
$posts = Post::orderBy('created_at', 'desc')->take(3)->get();
$tags = Tag::all();
return view('pages.index')->with('categories', $categories)->with('posts', $posts)->with('tags', $tags);
}
}
Sign up to view 0 direct reports
Get started