@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Dashboard

{{ now()->format('l, F j, Y') }}
@if(auth()->user()->role === 'super_admin') @include('dashboard.partials.super_admin') @elseif(auth()->user()->role === 'gas_company_admin') @include('dashboard.partials.company_admin') @else @include('dashboard.partials.end_user') @endif
@endsection