-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#27, Code for fetching from the data base and sending to the page is …
…done
- Loading branch information
1 parent
fa5b58d
commit 1c97fd7
Showing
2 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@extends('layouts.app') | ||
@section('title', 'Add Questions') | ||
|
||
@push('bodycontent') | ||
<section> | ||
<div class="gap gray-bg"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div class="row merged20" id="page-contents"> | ||
@include('layouts.includes.sidebar') | ||
<div class="col-lg-9"> | ||
<div class="central-meta"> | ||
<div class="frnds"> | ||
<ul class="nav nav-tabs"> | ||
<li class="nav-item"><a class="active" href="" data-toggle="tab">Question</a></li> | ||
</ul> | ||
<div class="tab-content"> | ||
<div class="tab-pane active fade show"> | ||
<ul class="nearby-contct"> | ||
<li> | ||
|
||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
@endpush |