@extends('profilelayout') @section('novidcontent') "; 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 "
"; } echo "
"; echo "
GIT LOG
"; getLatestCommit(); getLastTenCommits(); echo "
"; ?> @endsection