# Pages # Welcome Page You can modify the welcome page on your Ticaga installation by editing the following file: ```php resources/views/welcome.blade.php ``` This is what comes shipped with Ticaga: ```php

Welcome to your Ticaga installation!

Congratulations on installing Ticaga, now you're one step away from using the most powerful, modern help desk for your company.
Ticaga has been designed from the bottom up to ensure your team and customers can easily browse, submit tickets and much more straight out of the box. Powered by Laravel the modern and most advanced framework, we hope you can make Ticaga your own.

Ticaga has a fully fledged documentation website. This is where you can find all kinds of hints, tips and tools to help you get started.

Dive into the documentation world

Ticaga has a library of videos on Youtube, from exploring the past, to future features. We also do live streams and upload tutorials there.

Why not check out our videos?

``` # Dashboard page You can edit the dashboard page by editing the following file: ```php resources/views/dashboard.blade.php ``` This is what ships with Ticaga by default: ```php @php use Illuminate\Support\Facades\Auth; @endphp @section('title', 'Dashboard - Ticaga')
@if (Auth::user()->is_agent == '1')

{{ __('Open') }}

{{ __('Resolved') }}

{{ __('Employees Online') }}

@else

{{ __('Open') }}

{{ __('Resolved') }}

{{ __('Account Manager') }}

@endif
@if(Auth::user()->is_agent)
@else
@auth @endauth
@endif
``` # Customers welcome page Underneath the tickets widget for the customers is a content box, this can be customised by editing the following file: ``` resources/views/components/welcome.blade.php ``` This is the default content which ships with Ticaga: ```

Welcome to your {{ config('app.name') }} dashboard.

Here you can open and manage tickets with our company.

```