feat(profile,publications): integrate working Google Scholar import flow and unified faculty profile system

This commit is contained in:
Harshil Vora
2025-10-18 02:53:32 -07:00
parent 8fe0ef8112
commit ba28588e38
19 changed files with 915 additions and 139 deletions

View 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