JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "AboutController.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/app/Http/Controllers/frontend/AboutController.php
File size: 458 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Http\Controllers\frontend;
use App\Http\Controllers\Controller;
use App\Models\User;
use Illuminate\Http\Request;
class AboutController extends Controller
{
public function index()
{
$page_data['instructors'] = User::where('role', 'instructor')->inRandomOrder()->take(8)->get();
$view_path = 'frontend.' . get_frontend_settings('theme') . '.about_us.index';
return view($view_path, $page_data);
}
}