HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers96/smilefotografie.nl/app/config/komma.php
<?php

return [

    /*
     |--------------------------------------------------------------------------
	 | Album pages
	 |--------------------------------------------------------------------------
	 |
     | This pages will have a different behavior from the default pages
     |
     */

    'albumPages' => ['business','private','freeWork'],

    /*
     |--------------------------------------------------------------------------
	 | Form pages
	 |--------------------------------------------------------------------------
	 |
     | This pages which have a form
     |
     */

    'formPages' => ['offer','contact'],

    /*
     |--------------------------------------------------------------------------
	 | Negative pages
	 |--------------------------------------------------------------------------
	 |
     | This pages will have a dark header
     |
     */

    'negativePages' => ['business','private','freeWork','about','offer','contact'],

    /*
     |--------------------------------------------------------------------------
	 | Filtered album pages
	 |--------------------------------------------------------------------------
	 |
     | This page allows the query string: ?filter={query}
     | Content on the page will be filtered by album_type
     | Structure: [ code_name => default_filter ]
     |
     */

    'filteredPages' => ['business' => 'category'],

    /*
     |--------------------------------------------------------------------------
	 | Meta data
	 |--------------------------------------------------------------------------
	 |
     | Default settings for the meta data
     |
     */

    'meta' => [
        'siteName' => 'Smile Fotografie',
        'description' => 'Smile fotografie kan voor zowel particulier als voor uw bedrijf een professionele collage realiseren.'
    ],

    /*
     |--------------------------------------------------------------------------
	 | Offer form data
	 |--------------------------------------------------------------------------
	 |
	 | All config settings and field-rules
	 |
     */

    'offer' => [
        'config' => [
            'sendTo' => 'info@smilefotografie.nl',
            'emailTemplate' => 'offer',
            'subjectClient' => 'Bedankt voor uw offerte',
            'subjectAdmin' => 'Offerte',
        ],
        'values' => [
            'offer_type' => '',
            'name' => '',
            'company' => '',
            'email' => '',
            'phone' => '',
            'photo_type' => '',
            'message' => ''
        ],
        'rules' => [
            'name' => 'required',
            'email' => 'required_without_all:phone',
            'phone' => 'required_without_all:email',
            'g-recaptcha-response' => 'required|recaptcha'
        ]
    ],

    /*
     |--------------------------------------------------------------------------
	 | Contact form data
	 |--------------------------------------------------------------------------
	 |
	 | All config settings and field-rules
	 |
     */

    'contact' => [
        'config' => [
            'sendTo' => 'info@smilefotografie.nl',
            'emailTemplate' => 'contact',
            'subjectClient' => 'Contact',
            'subjectAdmin' => 'Contact',
        ],
        'values' => [
            'name' => '',
            'email' => '',
            'phone' => '',
            'message' => ''
        ],
        'rules' => [
            'name' => 'required',
            'email' => 'required_without_all:phone',
            'phone' => 'required_without_all:email',
            'g-recaptcha-response' => 'required|recaptcha'
        ]
    ]

];