@extends('layouts.admin.base') @section('page.title', 'Paramètres | Textes') @section('page.content')
@csrf {{-- Homepage banner text --}}

Bandeau de la page d'accueil

Si vous laissez ce champ vide, le bandeau ne s'affichera pas.

@include('components.forms.inputs.classic-light', [ 'id' => 'settings_homepage_banner_text', 'old' => 'settings.homepage_banner_text', 'name' => 'settings[homepage_banner_text]', 'label' => 'Texte du bandeau', 'placeholder' => 'Texte', 'value' => \App\Models\Setting::where('key', 'homepage_banner_text')->first()->value ?? null ])
{{-- Numbers text ANSE --}}

Chiffres de Anse

Si vous laissez un champ vide, le texte ne s'affichera pas.

@include('components.forms.inputs.classic-light', [ 'id' => 'settings_anse_number_of_available_boxes', 'old' => 'settings.anse_number_of_available_boxes', 'name' => 'settings[anse_number_of_available_boxes]', 'label' => 'Boxes à disposition', 'type' => 'number', 'placeholder' => 'Nombre de boxes', 'value' => \App\Models\Setting::where('key', 'anse_number_of_available_boxes')->first()->value ?? null ]) @include('components.forms.inputs.classic-light', [ 'id' => 'settings_anse_number_of_happy_customers', 'old' => 'settings.anse_number_of_happy_customers', 'name' => 'settings[anse_number_of_happy_customers]', 'label' => 'Nombre de clients satisfaits', 'type' => 'number', 'placeholder' => 'Clients satisfaits', 'value' => \App\Models\Setting::where('key', 'anse_number_of_happy_customers')->first()->value ?? null ]) @include('components.forms.inputs.classic-light', [ 'id' => 'settings_anse_tonnage_of_storage', 'old' => 'settings.anse_tonnage_of_storage', 'name' => 'settings[anse_tonnage_of_storage]', 'label' => 'M² de stockage', 'type' => 'number', 'placeholder' => 'Volume total de stockage', 'value' => \App\Models\Setting::where('key', 'anse_tonnage_of_storage')->first()->value ?? null ]) @include('components.forms.inputs.classic-light', [ 'id' => 'settings_anse_creation_year', 'old' => 'settings.anse_creation_year', 'name' => 'settings[anse_creation_year]', 'label' => 'Année de création', 'type' => 'number', 'placeholder' => 'Année de création', 'value' => \App\Models\Setting::where('key', 'anse_creation_year')->first()->value ?? null ])
{{-- Numbers text VILLEFRANCHE --}}

Chiffres de Villefranche-Sur-Saone

Si vous laissez un champ vide, le texte ne s'affichera pas.

@include('components.forms.inputs.classic-light', [ 'id' => 'settings_villefranche_number_of_available_boxes', 'old' => 'settings.villefranche_number_of_available_boxes', 'name' => 'settings[villefranche_number_of_available_boxes]', 'label' => 'Boxes à disposition', 'type' => 'number', 'placeholder' => 'Nombre de boxes', 'value' => \App\Models\Setting::where('key', 'villefranche_number_of_available_boxes')->first()->value ?? null ]) @include('components.forms.inputs.classic-light', [ 'id' => 'settings_villefranche_number_of_happy_customers', 'old' => 'settings.villefranche_number_of_happy_customers', 'name' => 'settings[villefranche_number_of_happy_customers]', 'label' => 'Nombre de clients satisfaits', 'type' => 'number', 'placeholder' => 'Clients satisfaits', 'value' => \App\Models\Setting::where('key', 'villefranche_number_of_happy_customers')->first()->value ?? null ]) @include('components.forms.inputs.classic-light', [ 'id' => 'settings_villefranche_tonnage_of_storage', 'old' => 'settings.villefranche_tonnage_of_storage', 'name' => 'settings[villefranche_tonnage_of_storage]', 'label' => 'M² de stockage', 'type' => 'number', 'placeholder' => 'Volume total de stockage', 'value' => \App\Models\Setting::where('key', 'villefranche_tonnage_of_storage')->first()->value ?? null ]) @include('components.forms.inputs.classic-light', [ 'id' => 'settings_villefranche_creation_year', 'old' => 'settings.villefranche_creation_year', 'name' => 'settings[villefranche_creation_year]', 'label' => 'Année de création', 'type' => 'number', 'placeholder' => 'Année de création', 'value' => \App\Models\Setting::where('key', 'villefranche_creation_year')->first()->value ?? null ])
{{-- Bottom --}}
@endsection