Skip to content
This repository has been archived by the owner on Mar 14, 2020. It is now read-only.

Commit

Permalink
simple doctor profile page.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhsianturi committed Feb 23, 2018
1 parent 4221623 commit 7402ad0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions resources/views/doctors/show.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@extends('layouts.master')

@section('title', $doctor->full_name)

@section('content')
<div class="page-header border-bottom box-shadow-nav pb-1">
<div class="container">
<div class="text-center">
<img src="{{ asset('img/example-avatar.png') }}" alt="avatar" class="img-responsive mr-2" width="50" height="50">
<h5 class="pt-2 text-dark">{{$doctor->full_name}}</h5>
</div>
</div>
</div>

<main class="container">
<div class="row my-3 p-3">

</div>
</main>
@endsection

0 comments on commit 7402ad0

Please sign in to comment.