Skip to content

Instantly share code, notes, and snippets.

@EmmanuelObua
Last active May 13, 2021 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EmmanuelObua/48cfb87ee0d9adfc22095d169b68a6d9 to your computer and use it in GitHub Desktop.
Save EmmanuelObua/48cfb87ee0d9adfc22095d169b68a6d9 to your computer and use it in GitHub Desktop.
Profile blade
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Dashboard') }}</div>
<div class="card-body">
{{-- Echo the profession of the user --}}
Profession: {{ $user->profile->profession }}
</div>
</div>
</div>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment