Added welcome page in cri #107
17
app/Filament/Pages/Welcome.php
Normal file
17
app/Filament/Pages/Welcome.php
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Pages;
|
||||||
|
|
||||||
|
use Filament\Pages\Page;
|
||||||
|
|
||||||
|
class Welcome extends Page
|
||||||
|
{
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-document-text';
|
||||||
|
|
||||||
|
protected static string $view = 'filament.pages.welcome';
|
||||||
|
|
||||||
|
public function getHeading(): string
|
||||||
|
{
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
19
resources/views/filament/pages/welcome.blade.php
Normal file
19
resources/views/filament/pages/welcome.blade.php
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<x-filament-panels::page>
|
||||||
|
|
||||||
|
<h1 class="text-3xl font-bold mb-6">Welcome to CRI Digital Manufacturing IIOT</h1>
|
||||||
|
|
||||||
|
<div class="w-full overflow-hidden rounded-xl shadow">
|
||||||
|
<img
|
||||||
|
src="{{ asset('images/iiot-banner.jpg') }}"
|
||||||
|
alt="CRI Digital Manufacturing IIoT"
|
||||||
|
class="w-full h-64 object-cover"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="text-lg text-gray-600 mb-6">
|
||||||
|
This dashboard provides real-time visibility into your manufacturing operations,
|
||||||
|
enabling you to monitor production, track performance, and make data-driven decisions
|
||||||
|
across plants and lines—all from one centralized platform.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</x-filament-panels::page>
|
||||||
Reference in New Issue
Block a user