text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```php
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use App\Attendize\Utils;
class UserSignUpTest extends TestCase
{
/**
* Test sign up page is successful
*
* @return void
... | /content/code_sandbox/tests/deprecated/UserSignUpTest.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 531 |
```php
<?php
return [
/*
|your_sha256_hash----------
| View to Bind JavaScript Vars To
|your_sha256_hash----------
|
| Set this value to the name of the view (or partial) that
| you want to prepend all JavaScript variables to.
| This can be a single view, or an array of views.
| Ex... | /content/code_sandbox/config/javascript.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 199 |
```yaml
php:
preset: laravel
enabled:
disabled:
- unused_use
finder:
not-name:
- index.php
- server.php
js:
finder:
not-name:
- webpack.mix.js
css: true
``` | /content/code_sandbox/.styleci.yml | yaml | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 56 |
```php
<?php namespace Tests\Concerns;
use Illuminate\Contracts\Console\Kernel;
trait DatabaseSetup
{
protected static $migrated = false;
public function setupDatabase()
{
if ($this->isInMemory()) {
$this->setupInMemoryDatabase();
} else {
$this->setupTestDatabase(... | /content/code_sandbox/tests/Concerns/DatabaseSetup.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 356 |
```php
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use App\Models\Organiser;
class OrganiserCustomizeTest extends TestCase
{
/**
* @group passing
*/
public function test_custo... | /content/code_sandbox/tests/deprecated/OrganiserCustomizeTest.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 197 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Authentication Defaults
|your_sha256_hash----------
|
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect s... | /content/code_sandbox/config/auth.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 737 |
```php
<?php
return [
'store_path' => public_path('/'),
];
``` | /content/code_sandbox/config/barcode.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 17 |
```php
<?php
return array(
/*
|your_sha256_hash----------
| Filename & Format
|your_sha256_hash----------
|
| The default filename (without extension) and the format (php or json)
|
*/
'filename' => '_ide_helper',
'format' => 'php',
'meta_filename' => '.phpstorm.m... | /content/code_sandbox/config/ide-helper.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,232 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Image Driver
|your_sha256_hash----------
|
| Intervention Image supports "GD Library" and "Imagick" to process images
| internally. You may choose one of them according to your PHP
| configuration. By default PHP's "GD Library" imp... | /content/code_sandbox/config/image.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 105 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Default Filesystem Disk
|your_sha256_hash----------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The "local" disk, as well as a variety of cloud
| based disks are available to your ap... | /content/code_sandbox/config/filesystems.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 449 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Default Queue Connection Name
|your_sha256_hash----------
|
| Laravel's queue API supports an assortment of back-ends via a single
| API, giving you convenient access to each back-end using the same
| syntax for every one. Here you... | /content/code_sandbox/config/queue.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 582 |
```php
<?php
use Illuminate\Support\Str;
return [
/*
|your_sha256_hash----------
| Default Cache Store
|your_sha256_hash----------
|
| This option controls the default cache connection that gets used while
| using this caching library. This connection is used when another is
| not exp... | /content/code_sandbox/config/cache.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 659 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Default Broadcaster
|your_sha256_hash----------
|
| This option controls the default broadcaster that will be used by the
| framework when an event needs to be broadcast. You may set this to
| any of the connections defined in the ... | /content/code_sandbox/config/broadcasting.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 338 |
```php
<?php
return [
/*
|your_sha256_hash----------
| View Storage Paths
|your_sha256_hash----------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that should be checked for your views. Of course
| the usual Laravel view path has alread... | /content/code_sandbox/config/view.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 195 |
```php
<?php
use Maatwebsite\Excel\Excel;
return [
'exports' => [
/*
|your_sha256_hash----------
| Chunk size
|your_sha256_hash----------
|
| When using FromQuery, the query is automatically chunked.
| Here you can specify how big the chunk should be.
... | /content/code_sandbox/config/excel.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,184 |
```php
<?php
use Illuminate\Support\Str;
return [
/*
|your_sha256_hash----------
| Default Database Connection Name
|your_sha256_hash----------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for all database work. Of course
... | /content/code_sandbox/config/database.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,119 |
```php
<?php
return [
'version' => file_get_contents(base_path('VERSION')),
'ticket_status_sold_out' => 1,
'ticket_status_after_sale_date' => 2,//
'enable_test_payments' => env('ENABLE_TEST_PAYMENTS', false),
'enable_dummy_payment_gateway' => false,
'payment_gateway_dummy' ... | /content/code_sandbox/config/attendize.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 840 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Default Hash Driver
|your_sha256_hash----------
|
| This option controls the default hash driver that will be used to hash
| passwords for your application. By default, the bcrypt algorithm is
| used; however, you remain free to mo... | /content/code_sandbox/config/hashing.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 316 |
```php
<?php
return [
/*
|your_sha256_hash----------
| Third Party Services
|your_sha256_hash----------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of informati... | /content/code_sandbox/config/services.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 216 |
```php
<?php
return [
// Uncomment the languages that your site supports - or add new ones.
// These are sorted by the native name, which is the order you might show them in a language selector.
// Regional languages are sorted by their base language, so "British English" sorts as "English, British"
'... | /content/code_sandbox/config/laravellocalization.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 12,334 |
```php
<?php
use Illuminate\Http\Request;
/*
|your_sha256_hash----------
| API Routes
|your_sha256_hash----------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your... | /content/code_sandbox/routes/api.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 197 |
```php
<?php
use Illuminate\Support\Str;
return [
/*
|your_sha256_hash----------
| Default Session Driver
|your_sha256_hash----------
|
| This option controls the default session "driver" that will be used on
| requests. By default, we will use the lightweight native driver but
| you ... | /content/code_sandbox/config/session.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,314 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p></p>
<p><b>{{ $event->title }}</b><b>{{ (isset($sender_name) ? $sender_name : $event->organiser->name) }}</b></p>
<p style="padding: 10px; margin:10px; border: 1px solid #f3f3f3;">
{{nl2br($message_content)}}
</p>
<p>
<b>{{ (isset($se... | /content/code_sandbox/resources/views/ja/Emails/messageReceived.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 186 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p></p>
<p>
You have been added to an {{ config('attendize.app_name') }} account by {{$inviter->first_name.' '.$inviter->last_name}}.
</p>
<p>
<br><br>
Username: <b>{{$user->email}}</b> <br>
Password: <b>{{$temp_password}}</... | /content/code_sandbox/resources/views/ja/Emails/inviteUser.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 153 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p> {{$first_name}}</p>
<p>
{{config 'attendize.app_name'}}
</p>
<p>
</p>
<div style="padding: 5px; border: 1px solid #ccc;">
{{route('confirmEmail', ['confirmation_code' => $confirmation_code])}}
</div>
<br><br>
<p>
</p>
<p>
... | /content/code_sandbox/resources/views/ja/Emails/ConfirmEmail.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 105 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p></p>
<p>
<b>{{{$attendee->event->title}}}</b>
<b>{{{ $refund_amount }}}</b>
</p>
<p>
<a href='mailto:{{{$attendee->event->organiser->email}}}'>{{{$attendee->event->organiser->email}}}</a><b>{{{$attendee... | /content/code_sandbox/resources/views/ja/Emails/notifyRefundedAttendee.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 122 |
```php
{{{$attendee->first_name}}}<br><br>
<br><br>
{{route('showOrderDetails', ['order_reference' => $attendee->order->order_reference])}}<br><br>
<b>{{$attendee->order->order_reference}}</b><br>
<br>
``` | /content/code_sandbox/resources/views/ja/Emails/attendeeTicket.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 62 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p></p>
<p>
<b>{{{$attendee->event->title}}}</b>.
</p>
<p>
<a href='mailto:{{{$attendee->event->organiser->email}}}'>{{{$attendee->event->organiser->email}}}</a><b>{{{$attendee->event->organiser->name}}}</b>
</p>
@stop
@section('footer'... | /content/code_sandbox/resources/views/ja/Emails/notifyCancelledAttendee.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 103 |
```php
<pre>
{{json_encode($data)}}
</pre>
<hr>
<pre>
{{json_encode($job)}}
</pre>
``` | /content/code_sandbox/resources/views/ja/Emails/FailedQueue.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 29 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<div>
<br><br>
: {{ route('password.reset', ['token' => $token]) }}.
<br><br><br>
<br>
Team Attendize
</div>
@stop
``` | /content/code_sandbox/resources/views/ja/Emails/Auth/Reminder.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 64 |
```php
<html xmlns="path_to_url" xmlns="path_to_url">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
@section('subject')
Attendize.com Email
@show
</title>
</head>
<body style="backgr... | /content/code_sandbox/resources/views/ja/Emails/Layouts/Master.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,659 |
```php
<div class="well">
<p>
[<b>Attendize</b>]
<b>{{base_path('.env')}}</b>
</p>
<p>
<b>{{storage_path('logs')}}</b><b></b>
</p>
<p>
Attendize
</p>
<p>
<a href="path_to_url">Issue</a>
<a href="path_to_url"></a>
</p>
<p>
Atten... | /content/code_sandbox/resources/views/ja/Installer/Partials/Footer.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 136 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Ciao,</p>
<p>Hai ricevuto un messaggio da <b>{{ (isset($sender_name) ? $sender_name : $event->organiser->name) }}</b> per l'evento <b>{{ $event->title }}</b>.</p>
<p style="padding: 10px; margin:10px; border: 1px solid #f3f3f3;">
{!! nl2br... | /content/code_sandbox/resources/views/it/Emails/messageReceived.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 220 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Ciao</p>
<p>
Sei stato aggiunto su {{ config('attendize.app_name') }} da {{$inviter->first_name.' '.$inviter->last_name}}.
</p>
<p>
Puoi accedere usando i seguenti dati.<br><br>
Username: <b>{{$user->email}}</b> <br>
Pass... | /content/code_sandbox/resources/views/it/Emails/inviteUser.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 198 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Ciao {{$first_name}}</p>
<p>
Grazie per esserti registrato su {{ config('attendize.app_name') }}. Siamo felici di averti a bordo!
</p>
<p>
Puoi creare il tuo primo evento e confermare la tua email usando il link in basso.
</p>
<div s... | /content/code_sandbox/resources/views/it/Emails/ConfirmEmail.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 172 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Ciao,</p>
<p>
Hai ricevuto un rimborso per la cancellazione del tuo biglietto per <b>{{{$attendee->event->title}}}</b>.
<b>{{{ $refund_amount }}} stato rimborsato sul totale, il saldo dovrebbe essere aggiornato in alcu... | /content/code_sandbox/resources/views/it/Emails/notifyRefundedAttendee.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 192 |
```php
<?php
/*
|your_sha256_hash----------
| Web Routes
|your_sha256_hash----------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
use App\Http\Contr... | /content/code_sandbox/routes/web.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 4,830 |
```php
Ciao {{{$attendee->first_name}}},<br><br>
Abbiamo allegato i biglietti a questa email.<br><br>
Puoi vedere tutte le informazioni relative al tuo ordine e scaricare i biglietti visitando {{route('showOrderDetails', ['order_reference' => $attendee->order->order_reference])}} in ogni momento.<br><br>
Il riferime... | /content/code_sandbox/resources/views/it/Emails/attendeeTicket.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 114 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Ciao,</p>
<p>
Il tuo biglietto per l'evento <b>{{{$attendee->event->title}}}</b> stato annullato.
</p>
<p>
Puoi contattare <b>{{{$attendee->event->organiser->name}}}</b> direttamente via <a href='mailto:{{{$attendee->event->organiser... | /content/code_sandbox/resources/views/it/Emails/notifyCancelledAttendee.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 148 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<div>
Ciao,<br><br>
per resettare la tua password, compila questo form: {{ route('password.reset', ['token' => $token]) }}.
<br><br><br>
Grazie,<br>
Team Attendize
</div>
@stop
``` | /content/code_sandbox/resources/views/it/Emails/Auth/Reminder.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 79 |
```php
<div class="well">
<p>
Il completamento dell'installazione potrebbe richiedere alcuni minuti. Dopo aver fatto clic su "<b>Installa Attendize</b>", le impostazioni di configurazione verranno scritte in questo file: <b>{{base_path('.env')}}</b>. possibile modificare manualmente queste impostazioni in ... | /content/code_sandbox/resources/views/it/Installer/Partials/Footer.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 341 |
```php
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','pat... | /content/code_sandbox/resources/views/Public/Partials/ga.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 120 |
```php
@extends('Public.ViewOrganiser.Layouts.OrganiserPage')
@section('head')
<style>
body { background-color: {{$organiser->page_bg_color}} !important; }
section#intro {
background-color: {{$organiser->page_header_bg_color}} !important;
color: {{$organiser->page... | /content/code_sandbox/resources/views/Public/ViewOrganiser/OrganiserPage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 211 |
```php
<section id="intro" class="container">
<div class="row">
<div class="col-md-12">
<div class="organiser_logo">
<div class="thumbnail">
<img src="{{URL::to($organiser->full_logo_path)}}" />
</div>
</div>
<h1>{{$orga... | /content/code_sandbox/resources/views/Public/ViewOrganiser/Partials/OrganiserHeaderSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 130 |
```php
<section id="events" class="container">
<div class="row">
<div class="col-xs-12 col-md-8">
@include('Public.ViewOrganiser.Partials.EventListingPanel',
[
'panel_title' => trans("Public_ViewOrganiser.upcoming_events"),
'events' =>... | /content/code_sandbox/resources/views/Public/ViewOrganiser/Partials/OrganiserEventsSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 239 |
```php
<footer id="footer" class="container-fluid">
<div class="container">
<div class="row">
<div class="col-md-12">
{{--Attendize is provided free of charge on the condition the below hyperlink is left in place.--}}
{{--See path_to_url for more information.--}}... | /content/code_sandbox/resources/views/Public/ViewOrganiser/Partials/OrganiserFooterSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 158 |
```php
<div class="row">
<div class="col-md-12">
<h1 class="event-listing-heading">{{ $panel_title }}</h1>
<ul class="event-list">
@if(count($events))
@foreach($events as $event)
<li>
<time datetime="{{ $event->start_date }}"... | /content/code_sandbox/resources/views/Public/ViewOrganiser/Partials/EventListingPanel.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 403 |
```php
<!DOCTYPE html>
<html lang="en">
<head>
<!--
_ _ _ _
/\ | | | | | (_)
/ \ | |_| |_ ___ _ __ __| |_ _______ ___ ___ _ __ ___
/ /\ \| __| __/ _ \ '_ \ / _` | |_ / _ \ / __/ _ \| '_ ` _ \
/ ____ \ |_|... | /content/code_sandbox/resources/views/Public/ViewOrganiser/Layouts/OrganiserPage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 528 |
```php
@extends('Public.ViewEvent.Layouts.EventPage')
@section('head')
@include('Public.ViewEvent.Partials.GoogleTagManager')
@endsection
@section('content')
@include('Public.ViewEvent.Partials.EventHeaderSection')
@include('Public.ViewEvent.Partials.EventTicketsSection')
@include('Public.ViewEvent.Pa... | /content/code_sandbox/resources/views/Public/ViewEvent/EventPage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 128 |
```php
<section id="share" class="container">
<div class="row">
<div class="col-md-12">
<ul class="rrssb-buttons clearfix">
@if($event->social_show_facebook)
<li class="rrssb-facebook">
<a href="path_to_url{{$event->event_url}}?utm_source=fb" ... | /content/code_sandbox/resources/views/Public/ViewOrganiser/Partials/OrganiserSocialSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 2,869 |
```php
@extends('Public.ViewEvent.Layouts.EventPage')
@section('head')
@stop
@section('content')
@include('Public.ViewEvent.Partials.EventHeaderSection')
@include('Public.ViewEvent.Partials.EventPaymentSection')
@include('Public.ViewEvent.Partials.EventFooterSection')
@stop
``` | /content/code_sandbox/resources/views/Public/ViewEvent/EventPagePayment.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 56 |
```php
@extends('Shared.Layouts.MasterWithoutMenus')
@section('title')
Event Not Live
@stop
@section('content')
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="panel">
<div class="panel-body">
<h4 style="text-align: center;">@lang("P... | /content/code_sandbox/resources/views/Public/ViewEvent/EventNotLivePage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 104 |
```php
@extends('Public.ViewEvent.Layouts.EventPage')
@section('head')
@stop
@section('content')
@include('Public.ViewEvent.Partials.EventHeaderSection')
@include('Public.ViewEvent.Partials.EventCreateOrderSection')
<script>var OrderExpires = {{strtotime($expires)}};</script>
@include('Public.ViewEv... | /content/code_sandbox/resources/views/Public/ViewEvent/EventPageCheckout.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 79 |
```php
@extends('Public.ViewEvent.Layouts.EventPage')
@section('content')
@include('Public.ViewEvent.Partials.EventHeaderSection')
@include('Public.ViewEvent.Partials.EventShareSection')
@include('Public.ViewEvent.Partials.EventViewOrderSection')
@include('Public.ViewEvent.Partials.EventFooterSection'... | /content/code_sandbox/resources/views/Public/ViewEvent/EventPageViewOrder.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 71 |
```php
@extends('Public.ViewEvent.Layouts.EmbeddedEventPage')
@section('content')
@include('Public.ViewEvent.Partials.EventTicketsSection')
@include('Public.ViewEvent.Embedded.Partials.PoweredByEmbedded')
@stop
``` | /content/code_sandbox/resources/views/Public/ViewEvent/Embedded/EventPage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 46 |
```php
@extends('Public.ViewEvent.Layouts.EmbeddedEventPage')
@section('head')
<script type="text/javascript" src="path_to_url"></script>
@stop
@section('content')
@include('Public.ViewEvent.Partials.EventCreateOrderSection')
@include('Public.ViewEvent.Embedded.Partials.PoweredByEmbedded')
<script> va... | /content/code_sandbox/resources/views/Public/ViewEvent/Embedded/EventPageCheckout.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 86 |
```php
@extends('Public.ViewEvent.Layouts.EmbeddedEventPage')
@section('content')
@include('Public.ViewEvent.Partials.EventShareSection')
@include('Public.ViewEvent.Partials.EventViewOrderSection')
@include('Public.ViewEvent.Embedded.Partials.PoweredByEmbedded')
@stop
``` | /content/code_sandbox/resources/views/Public/ViewEvent/Embedded/EventPageViewOrder.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 61 |
```php
{{--Attendize is provided free of charge on the condition the below hyperlink is left in place.--}}
{{--See path_to_url for more information.--}}
<div class="powered_by_embedded">
@include('Shared.Partials.PoweredBy')
</div>
<script type="text/javascript" src="/assets/javascript/iframeSizer.contentWindow.min... | /content/code_sandbox/resources/views/Public/ViewEvent/Embedded/Partials/PoweredByEmbedded.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 72 |
```php
<section id="details" class="container">
<div class="row">
<h1 class="section_head">
@lang("Public_ViewEvent.event_details")
</h1>
</div>
<div class="row">
@php
$descriptionColSize = $event->images->count()
&& in_array($event->event_ima... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventDescriptionSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 527 |
```php
<?php
$is_free_event = true;
?>
@foreach($tickets as $ticket)
<tr class="ticket" property="offers" typeof="Offer">
<td>
<span class="ticket-title semibold" property="name">
{{$ticket->title}}
</span>
<p class="ticket-descripton mb0 text-muted" prope... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventHiddenTicketsSelection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 699 |
```php
<section id="location" class="container p0">
<div class="row">
<div class="col-md-12">
<div class="google-maps content">
<iframe frameborder="0" style="border:0;" src="path_to_url{{$event->map_address}}&aq=0&oq={{$event->map_address}}&sll=28.659344,-81.187888&a... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventMapSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 158 |
```php
@if(!$event->is_live)
<section id="goLiveBar">
<div class="container">
@if(!$event->is_live)
{{ @trans("ManageEvent.event_not_live") }}
{!! Form::open(['url' => route('MakeEventLive', ['event_id' => $event->id]), 'id' => 'make-event-live-form', 'style' => 'display:inline-block... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventHeaderSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 651 |
```php
<section id='order_form' class="container">
<div class="row">
<h1 class="section_head">
@lang("Public_ViewEvent.order_details")
</h1>
</div>
<div class="row">
<div class="col-md-12" style="text-align: center">
@lang("Public_ViewEvent.below_order_details... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventCreateOrderSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 2,396 |
```php
<section id="order_form" class="container">
<div class="row">
<h1 class="section_head">
Order Details
</h1>
</div>
<div class="row">
<div class="col-md-12">
<div class="content event_view_order">
<div class="table-layout">
... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventViewInvoiceSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 887 |
```php
<section id="organiser" class="container">
<div class="row">
<div class="col-md-12">
<div class="event_organiser_details" property="organizer" typeof="Organization">
<div class="logo">
<img alt="{{$event->organiser->name}}" src="{{asset($event->organise... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventOrganiserSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 747 |
```php
<h3>@lang("Public_ViewEvent.payment_information")</h3>
@lang("Public_ViewEvent.below_payment_information_header")
@if($event->enable_offline_payments)
{!! Form::open(['url' => route('postCreateOrder', ['event_id' => $event->id]), 'class' => 'ajax']) !!}
<div class="offline_payment_toggle">
<div class="custom... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/OfflinePayments.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 327 |
```php
<section id="tickets" class="container">
<div class="row">
<h1 class='section_head'>
@lang("Public_ViewEvent.tickets")
</h1>
</div>
@if($event->end_date->isPast())
<div class="alert alert-boring">
@lang("Public_ViewEvent.event_already", ['started' => t... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventTicketsSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,410 |
```php
<?php
$gtm_code = '';
if (empty($event->google_tag_manager_code) === false) {
$gtm_code = $event->google_tag_manager_code;
} elseif (empty($event->organiser->google_tag_manager_code) === false) {
$gtm_code = $event->organiser->google_tag_manager_code;
}
?>
@if(empty($gtm_code) === false)
<!-- Google Tag... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/GoogleTagManager.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 197 |
```php
<section id='order_form' class="container">
<div class="row">
<h1 class="section_head">
@lang("Public_ViewEvent.payment_information")
</h1>
</div>
@if($payment_failed)
<div class="row">
<div class="col-md-8 alert-danger" style="text-align: left; padding: 10px">... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventPaymentSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 754 |
```php
<style>
/*@todo This is temp - move to styles*/
h3 {
border: none !important;
font-size: 30px;
text-align: center;
margin: 0 0 30px;
letter-spacing: .2em;
font-weight: 200;
}
.order_header {
text-align: center
}
.order_header .mass... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventViewOrderSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 2,235 |
```php
@foreach($ticket->questions->where('is_enabled', 1)->sortBy('sort_order') as $question)
<div class="col-md-12">
<div class="form-group">
{!! Form::label("ticket_holder_questions[{$ticket->id}][{$i}][$question->id]", $question->title, ['class' => $question->is_required ? 'required' : '']) ... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/AttendeeQuestions.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 842 |
```php
<form class="online_payment" action="<?php echo route('postCreateOrder', ['event_id' => $event->id]); ?>" method="post" id="stripe-sca-payment-form">
<div class="form-row">
<label for="card-element">
@lang("Public_ViewEvent.stripe_credit_or_debit_card")
</label>
<div id="c... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/PaymentStripeSCA.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 563 |
```php
<form class="online_payment" action="<?php echo route('postCreateOrder', ['event_id' => $event->id]); ?>" method="post" id="stripe-payment-form">
<div class="form-row">
<label for="card-element">
@lang("Public_ViewEvent.stripe_credit_or_debit_card")
</label>
<div id="card-... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/PaymentStripe.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 559 |
```php
<footer id="footer" class="container-fluid">
<div class="container">
<div class="row">
<div class="col-md-12">
{{--Attendize is provided free of charge on the condition the below hyperlink is left in place.--}}
{{--See path_to_url for more information.--}}... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventFooterSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 206 |
```php
<form class="online_payment ajax" action="<?php echo route('postCreateOrder', ['event_id' => $event->id]); ?>" method="post">
<div class="online_payment">
<div class="row">
<div class="col-md-12">
<div class="form-group">
{!! Form::label('card-number', ... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/Dummy.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 467 |
```php
@if($event->social_show_facebook || $event->social_show_linkedin || $event->social_show_twitter || $event->social_show_whatsapp || $event->social_show_email)
<section id="share" class="container">
<div class="row">
<h1 class="section_head">
@lang("Public_ViewEvent.share_event")
</... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/EventShareSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 3,110 |
```php
<form class="online_payment ajax" action="<?php echo route('postCreateOrder', ['event_id' => $event->id]); ?>"
method="POST" id="free-payment-form">
<p>
{!! @trans('Public_ViewEvent.no_payment_required') !!}
</p>
<div id="form-errors"></div>
@csrf
<input class="btn btn-lg bt... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/PaymentFree.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 115 |
```php
<!DOCTYPE html>
<html lang="en">
<head>
<!--
_ _ _ _
/\ | | | | | (_)
/ \ | |_| |_ ___ _ __ __| |_ _______ ___ ___ _ __ ___
/ /\ \| __| __/ _ \ '_ \ / _` | |_ / _ \ / __/ _ \| '_ ` _ \
/ ____ \ |_|... | /content/code_sandbox/resources/views/Public/ViewEvent/Layouts/EmbeddedEventPage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 721 |
```php
<!DOCTYPE html>
<html lang="en">
<head>
<!--
_ _ _ _
/\ | | | | | (_)
/ \ | |_| |_ ___ _ __ __| |_ _______ ___ ___ _ __ ___
/ /\ \| __| __/ _ \ '_ \ / _` | |_ / _ \ / __/ _ \| '_ ` _ \
/ ____ \ |_|... | /content/code_sandbox/resources/views/Public/ViewEvent/Layouts/EventPage.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 990 |
```php
@extends('Shared.Layouts.MasterWithoutMenus')
@section('title')
@lang("User.sign_up")
@stop
@section('content')
<div class="row">
<div class="col-md-7 col-md-offset-2">
{!! Form::open(['url' => route("showSignup"), 'class' => 'panel', 'id' => 'signup-form']) !!}
<div cla... | /content/code_sandbox/resources/views/Public/LoginAndRegister/Signup.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 982 |
```php
@extends('Shared.Layouts.MasterWithoutMenus')
@section('title', trans("User.login"))
@section('content')
{!! Form::open(['url' => route("login"), 'id' => 'login-form']) !!}
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="panel">
<div class="panel... | /content/code_sandbox/resources/views/Public/LoginAndRegister/Login.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 444 |
```php
@extends('Shared.Layouts.MasterWithoutMenus')
@section('title')
Reset Password
@stop
@section('content')
<div class="row">
<div class="col-md-4 col-md-offset-4">
{!! Form::open(array('url' => route('postResetPassword'), 'class' => 'panel')) !!}
<div class="panel-body">
... | /content/code_sandbox/resources/views/Public/LoginAndRegister/ResetPassword.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 536 |
```php
@extends('Shared.Layouts.MasterWithoutMenus')
@section('title')
@lang("User.forgot_password")
@stop
@section('content')
<div class="row">
<div class="col-md-4 col-md-offset-4">
{!! Form::open(array('url' => route('postForgotPassword'), 'class' => 'panel')) !!}
<div class="... | /content/code_sandbox/resources/views/Public/LoginAndRegister/ForgotPassword.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 390 |
```php
@if(config('attendize.captcha.captcha_is_on') && config('attendize.captcha.captcha_secret'))
<div class="form-group ">
@if(config('attendize.captcha.captcha_type') == 'recaptcha')
@include('Public.LoginAndRegister.Partials.CaptchaRecaptcha')
@endif
@if(config('attendize.captcha.captcha_type')... | /content/code_sandbox/resources/views/Public/LoginAndRegister/Partials/CaptchaSection.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 109 |
```php
<script src="path_to_url" async defer></script>
<div class="g-recaptcha" data-sitekey="{{config('attendize.captcha.captcha_key')}}"></div>
``` | /content/code_sandbox/resources/views/Public/LoginAndRegister/Partials/CaptchaRecaptcha.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 36 |
```php
<script src="path_to_url" async defer></script>
<div class="h-captcha" data-sitekey="{{config('attendize.captcha.captcha_key')}}"></div>
<p>This site is protected by hCaptcha and its <a href="path_to_url">Privacy Policy</a> and <a href="path_to_url">Terms of Service</a> apply.</p>
``` | /content/code_sandbox/resources/views/Public/LoginAndRegister/Partials/CaptchaHcaptcha.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 79 |
```php
<html>
<head>
<title>
@lang("basic.whoops")
</title>
<style>
body {
background-color: #f9f9f9;
color: #333;
text-align: center;
text-shadow: 0 1px 0 #fff;
font-size: 1.8em;
... | /content/code_sandbox/resources/views/Public/Errors/Missing.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 165 |
```php
<html>
<head>
<title>
@lang("basic.whoops")
</title>
<style>
body {
background-color: #f9f9f9;
color: #333;
text-align: center;
text-shadow: 0 1px 0 #fff;
font-size: 1.8em;
... | /content/code_sandbox/resources/views/Public/Errors/Generic.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 166 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Witaj,</p>
<p>Otrzymae wiadomo od <b>{{ (isset($sender_name) ? $sender_name : $event->organiser->name) }}</b> w zwizku z wydarzeniem <b>{{ $event->title }}</b>.</p>
<p style="padding: 10px; margin:10px; border: 1px solid #f3f3f3;">
{{nl2br... | /content/code_sandbox/resources/views/pl/Emails/messageReceived.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 242 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Witaj</p>
<p>
Zostae dodany do konta {{ config('attendize.app_name') }} przez {{$inviter->first_name.' '.$inviter->last_name}}.
</p>
<p>
Moesz skorzysta z nastpujcych tymczasowych danych logowania:.<br><br>
Login: <b>{{$user-... | /content/code_sandbox/resources/views/pl/Emails/inviteUser.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 219 |
```php
<html>
<!-- Keep this page lean as possible.-->
<head>
<title>
Ticket(s)
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<style>
{{$css}}
... | /content/code_sandbox/resources/views/Public/ViewEvent/Partials/PDFTicket.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 9,900 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Hi {{$first_name}}</p>
<p>
Dzikujemy, e zechciae si zarejestrowa do {{ config('attendize.app_name') }}. Jest nam mio, e chcesz z nami wsppracowa.
</p>
<p>
Moesz utworzy pierwsze wydarzenie klikajc link poniej, przy okazji potwierdzisz... | /content/code_sandbox/resources/views/pl/Emails/ConfirmEmail.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 197 |
```php
Witaj {{{$attendee->first_name}}},<br><br>
Zaczylimy bilety do tego emaila.<br><br>
Moesz przejrze szczegy zamwienia i pobra bilety {{route('showOrderDetails', ['order_reference' => $attendee->order->order_reference])}} kiedykolwiek zechcesz.<br><br>
Twj identyfikator zamwienia to <b>{{$attendee->order->order... | /content/code_sandbox/resources/views/pl/Emails/attendeeTicket.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 117 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Witaj,</p>
<p>
Otrzymae zwrot za odwoane bilety na <b>{{{$attendee->event->title}}}</b>.
<b>Kwota {{{ $refund_amount }}} zostaa zwrcona osobie, ktra pacia. Transakcja powinna zosta sfinalizowana w cigu najbliszych kilku... | /content/code_sandbox/resources/views/pl/Emails/notifyRefundedAttendee.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 222 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<div>
Witaj,<br><br>
aby zresetowa haso, wypenij ten formularz: {{ route('showResetPassword', ['token' => $token]) }}.
<br><br><br>
Dzikujemy,<br>
Zesp Attendize.
</div>
@stop
``` | /content/code_sandbox/resources/views/pl/Emails/Auth/Reminder.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 86 |
```php
@extends('en.Emails.Layouts.Master')
@section('message_content')
<p>Witaj,</p>
<p>
Twj bilet na <b>{{{$attendee->event->title}}}</b> zosta anulowany.
</p>
<p>
Moesz nazwiza kontakt z <b>{{{$attendee->event->organiser->name}}}</b> korzystajc z adresu email: <a href='mailto:{{{$attendee->event->organis... | /content/code_sandbox/resources/views/pl/Emails/notifyCancelledAttendee.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 149 |
```php
<div class="well">
<p>
Instalacja moe zaj kilka minut. W momencie kliknicia '<b>Instaluj</b>' konfiguracja zostanie zapisana w pliku: <b>{{base_path('.env')}}</b>. Moesz zmieni t konfiguracj dokonujc zmian w tym pliku.
</p>
<p>
Jeeli instalacja nie przebiegnie pomylnie, sprawd logi zn... | /content/code_sandbox/resources/views/pl/Installer/Partials/Footer.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 359 |
```php
@extends('Emails.Layouts.Master')
@section('message_content')
@lang("basic.hello"),<br><br>
{!! @trans("Order_Emails.successful_order", ["name"=>$order->event->title]) !!}<br><br>
{{ @trans("Order_Emails.tickets_attached") }} <a href="{{route('showOrderDetails', ['order_reference' => $order->order_reference])... | /content/code_sandbox/resources/views/Emails/OrderConfirmation.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 1,098 |
```php
<p>
{{json_encode($exception)}}
</p>
``` | /content/code_sandbox/resources/views/Emails/FatalError.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 14 |
```php
@extends('Emails.Layouts.Master')
@section('message_content')
<p>@lang("basic.hello") {{ $attendee->first_name }},</p>
<p>@lang("Email.message_received_from_organiser", ["organiser_name"=>$event->organiser->name, "event_title"=>$event->title])</p>
<p style="padding: 10px; margin:10px; border: 1px solid #f3f3... | /content/code_sandbox/resources/views/Emails/MessageToAttendees.blade.php | php | 2016-03-03T01:33:10 | 2024-08-16T12:05:02 | Attendize | Attendize/Attendize | 3,955 | 153 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.