feat(profile,publications): integrate working Google Scholar import flow and unified faculty profile system
This commit is contained in:
14
resources/views/faculty/profile.blade.php
Normal file
14
resources/views/faculty/profile.blade.php
Normal file
@@ -0,0 +1,14 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container py-5">
|
||||
<h1 class="mb-4">Faculty Profile</h1>
|
||||
|
||||
<div class="card p-4 shadow-sm">
|
||||
<p><strong>Name:</strong> {{ $profile->name }}</p>
|
||||
<p><strong>Email:</strong> {{ $profile->email }}</p>
|
||||
<p><strong>Phone Number:</strong> {{ $profile->phone_number ?: 'N/A' }}</p>
|
||||
<p><strong>Department:</strong> {{ $profile->department_name ?: 'N/A' }}</p>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user