See above video to learn how to setup your website in laravel framework
Step 1: Run your project with below command
php artisan serve
Step 2 : open browser and open this link http://127.0.0.1:8000
Step 3: Download theme from below link
header
@yield('content')
footer
@extends('layouts.index')
@section('title','Homepage')
@section('description','This is homepage')
@section('content')
Write your dynamic content which will be change
@endsection