flexisip-account-manager/flexiapi/resources/views/layouts/base.blade.php
Timothée Jaussoin 4f11deeaf9 Add some basic subscriptions statistics
Move the statistics to a specific Library
Show some subscriptions charts in the admin panel
Inject the browser user agent to the database if available
Split statistics in different view (day/week/month)
Install cron scripts
Update the dependencies
2021-10-05 14:27:23 +02:00

32 lines
1.3 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ config('app.name') }}</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
@if (config('instance.custom_theme'))
@if (file_exists(public_path('css/'.config('app.env').'.style.css')))
<link rel="stylesheet" type="text/css" href="{{ asset('css/'.config('app.env').'.style.css') }}" >
@else
<link rel="stylesheet" type="text/css" href="{{ asset('css/style.css') }}" >
@endif
<link rel="stylesheet" type="text/css" href="{{ asset('css/charts.css') }}" >
@endif
</head>
<body>
<header>
@yield('header')
</header>
@yield('body')
<footer class="text-center mt-2">
@if (config('instance.copyright'))
{{ config('instance.copyright') }} |
@endif
<a href="{{ route('account.documentation') }}">Documentation</a> |
<a href="{{ route('api') }}">API</a>
</footer>
</body>
</html>