# fluentform/3.6.51/app/Providers/FrontendProvider.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.51. 30 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.51/code/app/Providers/FrontendProvider.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.51/raw/app/Providers/FrontendProvider.php
- Modified: 2017-12-29T16:40:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/3.6.51/code/app/Providers/FrontendProvider.php#L10-L20`.

```php
<?php

namespace FluentForm\App\Providers;

use FluentForm\Framework\Foundation\Provider;

/**
 * This provider will be loaded only on frontend (public)
 */

class FrontendProvider extends Provider
{
	/**
     * The provider booting method to boot this provider
     * @return void
     */
	public function booting()
    {
    	// ...
    }

    /**
     * The provider booted method to be called after booting
     * @return void
     */
	public function booted()
    {
        // ...
    }
}
```
