This commit is contained in:
2025-06-03 12:40:13 +05:45
parent 50c804d445
commit f9a589c05f
201 changed files with 34026 additions and 2 deletions

View File

@ -0,0 +1,12 @@
@extends('layouts.app')
@section('content')
<div class="container mt-5">
<h1>Dashboard</h1>
<div class="d-flex gap-3 mt-3">
<a href="{{ route('companies.index') }}" class="btn btn-primary">Manage Companies</a>
<a href="{{ route('employees.index') }}" class="btn btn-secondary">Manage Employees</a>
<a href="{{ route('posts.index')}}" class="btn btn-secondary">Manage Posts</a>
</div>
</div>
@endsection