Files
citrus/resources/views/front/career/admin_dashboard.blade.php
T

24 lines
550 B
PHP

@extends('layouts.site')
@section('content')
<section class="wrapper bg-[#f0f7ff] py-12">
<div class="container px-4">
<div class="max-w-7xl mx-auto">
<!-- Welcome Section -->
@include('front.career.partials.welcome')
<!-- Statistics Section -->
@include('front.career.partials.stats')
<!-- Gantt Chart Section -->
@include('front.career.partials.gantt')
<!-- Interns Table / Detailed List Section -->
@include('front.career.partials.list')
</div>
</div>
</section>
@endsection