@extends('profilelayout') @section('content') "; echo "Latest commit"; //echo "

$commitID

"; echo "
$latestCommit
"; echo ""; } function getLastTenCommits() { $lastTenCommits = shell_exec('git log -n 10'); echo "
"; echo "Last 10 Commits"; echo "
$lastTenCommits
"; echo "
"; } getLatestCommit(); getLastTenCommits() ?> @endsection