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/farmfun/reserveren.farmfun.be/resources/views/pdf/program.blade.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
    @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
    .page-break {
        page-break-after: always;
    }
    .pdf-container {
        position: relative;
        top: 0;
        left: 0;
        padding-bottom: 45px;
        font-family: 'Open Sans', sans-serif;
        /*background: #efefef;*/
    }
    img{
        display: block;
        border: none;
    }

    .header__title {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.2;
        text-transform: uppercase;
        color: #595959;
        padding-left: 30px;
    }

    .main {
        padding: 0 30px;
    }

    .main__double {
    }

    .footer .s-text {
        margin: 0;
    }

    .footer .signature {
        margin-top: 15px;
    }

    .footer__logo img {
        margin-right: -15px;
    }

    .s-text .notes {
        font-size: 12px;
        line-height: 1.2;
        color: #7d7d7d;
    }

    .main__table {
        width: 100%;
    }

    .main__table thead td {
        font-weight: bold;
        padding-bottom: 10px;
    }

    .main__table tr.mt td{
        padding-top: 20px;
    }

    .main__table td{
        font-size: 12px;
        line-height: 1.2;
        color: #595959;
        vertical-align: top;
    }

    .main__table td em {
        display: inline-block;
        padding-top: 4px;
        color: #7d7d7d;
    }

    .main__table .dots td{
        padding: 8px 0;
    }

    .main__table .dots--first td{
        padding-top: 20px;
    }

    .c-footer {
        width: 100%;
        margin: 0 auto;
        padding-left: 30px;
        background-color: #37474f;
        color: white;
        border-collapse: collapse;
    }

    .c-footer__company {
        background-color: #2D373C;
        text-align: left;
        padding-left: 30px;
    }

    .c-footer__seperator {
        padding: 0;
        text-align: left;
    }

    .c-footer__social {
        background-color: #37474f;
        text-align: right;
        padding-right: 30px;
    }

    .c-footer__icon {
        display: inline-block;
        vertical-align: middle;
    }

    ul li {
        font-size: 13px;
    }

    .c-prefooter {
        width: 100%;
        margin: 0 auto;
        padding-left: 30px;
        font-size: 16px;
        line-height: 24px;
        background-color: #3d5966;
        color: white;
    }

    .c-prefooter__decoration {
        padding: 30px 0 0;
        width: 334px;
        vertical-align: bottom;
    }

</style>

<div class="pdf-container">

    <div class="header">
        <img width="200" height="66" alt="logo" src="https://farmfun.be/img/pdf/farmfun-logo-green.jpg?v=2"/>
        <h1 class="header__title">Offerte</h1>
    </div>

    <div class="main">

        <div class="main__double">
            <p style="font-size: 15px;">
                <strong style="display: inline-block; width: 200px; color: #000;">Event:</strong> {{ $order->date->format('d-m-Y') }}<br/>
                <strong style="display: inline-block; width: 200px; color: #000;">Locatie:</strong> {{ $location->city }}<br/>
            </p>

            <div style="margin-top: 40px; margin-bottom: 40px;">
                <p>Hoi funbeliever,</p>

                <p>
                    Bedankt voor je interesse in een farmtastische activiteit op onze boerderij. Tof dat jullie overwegen om ook een FBF (Funbelievable Friend) te worden!<br/><br/>
                    In ons concept streven we er naar jou en je koe-llega’s, vrienden of familieleden eens heel positief van jullie melk te brengen. Beleven, je amuseren en voluit smijten zoals je al lang niet meer deed. Heb je er al zin in?<br/><br/>
                    Je stelde een mooi programma samen via onze website. <strong>Maar let op:</strong> deze zijn nog niet vast gelegd. Het is dus mogelijk dat anderen het tijdslot voor je voeten weg grazen. Overleg dit voorstel rustig met je kuddegenoten, en vat dan de koe snel bij de horens. Zo ben je zeker van jouw plekje op onze wei
                </p>

                <p>&nbsp;</p>
                @if(isset($order->lines) && $order->lines->count() > 0)
                    <table class="c-table">
                        <thead>
                        <tr style="padding-bottom: 10px;">
                            <th class="c-table-heading-item" width="150" style="text-align: left; vertical-align: bottom;">Activiteit</th>
                            <th class="c-table-heading-item" width="60" style="text-align: left; vertical-align: bottom;">Aantal<br/>Pers.</th>
                            @if($order->lines->where('price_start_up', '>', 0)->count() >= 1)
                                <th class="c-table-heading-item" width="80" style="text-align: left; vertical-align: bottom;">Prijs p.p.</th>
                                <th class="c-table-heading-item" width="80" style="text-align: left; vertical-align: bottom;">Opstart</th>
                                <th class="c-table-heading-item" width="80" style="text-align: right; vertical-align: bottom;">Totaal</th>
                            @else
                                <th class="c-table-heading-item" width="80" style="text-align: left; vertical-align: bottom;">Prijs p.p.</th>
                                <th class="c-table-heading-item" width="80" style="text-align: right; vertical-align: bottom;">Totaal</th>
                            @endif

                        </tr>
                        </thead>
                        <tbody>
                        @foreach($order->lines as $orderLine)
                            <tr>
                                <td class="c-table-item"  valign="top">{!! $orderLine->name !!}
                                    @if(!empty($orderLine->remarks))<div class="c-table-item__sub"><strong>Opmerking: </strong> {!! nl2br($orderLine->remarks) !!}</div>@endif
                                </td>
                                <td class="c-table-item" style="text-align: left;" valign="top">
                                    {{ $orderLine->quantity }} x
                                </td>

                                @if($order->lines->where('price_start_up', '>', 0)->count() >= 1)
                                    <td class="c-table-item" style="text-align: left;" valign="top">
                                        @if($orderLine->price_each_unit != 0){{ config('site.shop_currency') }} {{ euro_pricing_format($orderLine->price_each_unit) }}@endif
                                    </td>
                                    <td class="c-table-item" style="text-align: left;" valign="top">
                                        @if($orderLine->price_each_unit != 0 && $orderLine->price_start_up)+&nbsp;&nbsp;@endif
                                        @if($orderLine->price_start_up != 0){{ config('site.shop_currency') }} {{ euro_pricing_format($orderLine->price_start_up) }}<br/>@endif
                                    </td>
                                @else
                                    <td class="c-table-item" style="text-align: left;" valign="top">
                                        @if($orderLine->price_each_unit != 0){{ config('site.shop_currency') }} {{ euro_pricing_format($orderLine->price_each_unit) }}@endif
                                    </td>
                                @endif

                                <td class="c-table-item" style="text-align: right;" valign="top">{{ config('site.shop_currency') }} {{ euro_pricing_format($orderLine->price_total) }}</td>
                            </tr>
                        @endforeach
                        </tbody>
                    </table>
                @endif
                <hr/>
                <table class="c-table  c-table--summary" style="margin-top: 20px;">
                    <tbody>
                    <tr class="c-table-row--divider">

                        @if($order->lines->where('price_start_up', '>', 0)->count() >= 1)
                            <td width="410"><strong>Totaal</strong></td>
                            <td width="100">{{ config('site.shop_currency') }} {{ euro_pricing_format($order->total) }}</td>
                        @else
                            <td width="410"><strong>Totaal</strong></td>
                            <td width="100">{{ config('site.shop_currency') }} {{ euro_pricing_format($order->total) }}</td>
                        @endif

                    </tr>
                    <tr class="c-table-row--btw">
                        <td colspan="2">prijs is inclusief btw</td>
                        {{--            <td>{{ config('site.shop_currency') }} {{ euro_pricing_format($order->vat) }}</td>--}}
                    </tr>
                    </tbody>
                </table>
            </div>
        </div>

    </div>

</div>

<div style="page-break-after: always;"></div>

<div style="font-family: 'Open Sans', sans-serif;">

    <div class="main" style="margin-top: 50px;">
        <h4 style="margin-bottom: 0;">In koeien van letters</h4>
        <ul>
            <li>Onze <a href="https://farmfun.be/algemene-voorwaarden">voorwaarden</a> maken deel uit van de overeenkomst. Dat gaat over annuleringen, betalingen, geschillen, overmacht enz.</li>
            <li>Wij gaan er van uit dat jij mag handelen in functie de hele groep en dat jij de nodige communicatie voert met de groepsleden</li>
            <li>De voorschotfactuur ontvang je via mail en bedraagt {{ config('site.deposit_percentage') }}% van het offertebedrag. De betalingstermijn is 14 dagen na factuurdatum.</li>
            <li>14 dagen voor de eventdatum dient het verwachte aantal deelnemers doorgegeven te worden voor onze planning.</li>
            <li>Deelnemers kosteloos afzeggen kan nog tot 3 kalenderdagen voor het event. Het dan gekende aantal personen wordt aangerekend voor zowel de activiteit als de catering.</li>
            <li>De eindafrekening wordt opgemaakt kort na de activiteit en de betalingstermijn bedraagt 14 dagen ongeacht de betaalpolicy van jouw bedrijf.</li>
            <li>Wij zijn goed verzekerd. Zijn jullie dat ook? Vraag het best even na, want niet elke schade valt onder onze verantwoordelijkheid.</li>
            <li>Als je instemt met deze offerte, sta je ook het portretrecht af van de foto's. Problemen mee? Meld het ons vooraf!</li>
            <li>Eigen food en drinks meebrengen is niet toegestaan.</li>
            <li>We houden het recht voor om deelnemers te weigeren die onder invloed van drank en/of drugs staan.</li>
        </ul>

        <p>
            Met plezierige groet,<br/>
            <br/>
            Team FarmFun
        </p>
    </div>
</div>

<table class="c-prefooter" style="margin-top: 50px;">
    <tr>
        <td>
            <table class="c-contact">
                <tr>
                    {{--                            <td><img class="c-contact__icon" src="{{ asset('/img/mail/email.png') }}" alt="" /></td>--}}
                    <td><img class="c-contact__icon" src="https://farmfun.be/img/mail/email.png?v=2" alt="" /></td>
                    <td>{{ config('site.company.email') }}</td>
                </tr>
                <tr>
                    {{--                            <td><img class="c-contact__icon" src="{{ asset('/img/mail/phone.png') }}" alt="" /></td>--}}
                    <td><img class="c-contact__icon" src="https://farmfun.be/img/mail/phone.png?v=2" alt="" /></td>
                    <td>{{ config('site.company.phone.display') }}</td>
                </tr>
                <tr>
                    {{--                            <td><img class="c-contact__icon" src="{{ asset('/img/mail/message.png') }}" alt="" /></td>--}}
                    <td><img class="c-contact__icon" src="https://farmfun.be/img/mail/message.png?v=2" alt="" /></td>
                    <td>www.farmfun.be</td>
                </tr>
            </table>
        </td>
        <td class="c-prefooter__decoration">
            {{--                    <img src="{{ asset('/img/mail/subfooter.gif') }}" alt="" />--}}
            <img src="https://farmfun.be/img/mail/subfooter.gif?v=2" alt="" />
        </td>
    </tr>
</table>
<table class="c-footer">
    <tr>
        <td class="c-footer__company" width="221px">
            © {{config('site.company.name')}} {{\Carbon\Carbon::now()->year}}
        </td>
        <td class="c-footer__seperator">
            {{--                    <img src="{{ asset('/img/mail/footer-seperator.png') }}" alt="" />--}}
            <img src="https://farmfun.be/img/mail/footer-seperator.png?v=2" alt="" />
        </td>
        <td class="c-footer__social">
            @foreach(site_config('social') as $channelName => $channelLink)
                <a class="c-footer__icon" title="{{ ucfirst($channelName) }}" href="{{$channelLink}}">
                    {{--                            <img src="{{ asset('/img/mail/'.$channelName.'.png') }}" alt="{{$channelName}}" />--}}
                    <img src="https://farmfun.be/img/mail/{{$channelName}}.png?v=2" alt="{{$channelName}}" />
                </a>
            @endforeach
        </td>
    </tr>
</table>