Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

major updates for the change log #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file modified .DS_Store
Binary file not shown.
61 changes: 61 additions & 0 deletions app/Mail/FormSubmissionMail.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;

class FormSubmissionMail extends Mailable
{
use Queueable, SerializesModels;

/**
* Create a new message instance.
*
* @return void
*/
public $formData;

public function __construct($formData)
{
$this->formData = $formData;
}

/**
* Get the message envelope.
*
* @return \Illuminate\Mail\Mailables\Envelope
*/
public function envelope()
{
return new Envelope(
subject: 'Callback Request | ' . $this->formData['currentPage'],
);
}

/**
* Get the message content definition.
*
* @return \Illuminate\Mail\Mailables\Content
*/
public function content()
{
return new Content(
markdown: 'emails.form-submission',
);
}

/**
* Get the attachments for the message.
*
* @return array
*/
public function attachments()
{
return [];
}
}
94 changes: 62 additions & 32 deletions bootstrap/cache/packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
array (
0 => 'Botble\\Api\\Providers\\ApiServiceProvider',
),
'aliases' =>
array (
'ApiHelper' => 'Botble\\Api\\Facades\\ApiHelper',
),
),
'botble/assets' =>
array (
Expand All @@ -54,6 +58,13 @@
0 => 'Botble\\DevTool\\Providers\\DevToolServiceProvider',
),
),
'botble/get-started' =>
array (
'providers' =>
array (
0 => 'Botble\\GetStarted\\Providers\\GetStartedServiceProvider',
),
),
'botble/git-commit-checker' =>
array (
'providers' =>
Expand All @@ -69,7 +80,7 @@
),
'aliases' =>
array (
'Menu' => 'Botble\\Menu\\Facades\\MenuFacade',
'Menu' => 'Botble\\Menu\\Facades\\Menu',
),
),
'botble/optimize' =>
Expand All @@ -78,6 +89,10 @@
array (
0 => 'Botble\\Optimize\\Providers\\OptimizeServiceProvider',
),
'aliases' =>
array (
'OptimizerHelper' => 'Botble\\Optimize\\Facades\\OptimizerHelper',
),
),
'botble/page' =>
array (
Expand Down Expand Up @@ -107,14 +122,21 @@
),
'aliases' =>
array (
'Assets' => 'Botble\\Base\\Facades\\AssetsFacade',
'MetaBox' => 'Botble\\Base\\Facades\\MetaBoxFacade',
'Action' => 'Botble\\Base\\Facades\\ActionFacade',
'Filter' => 'Botble\\Base\\Facades\\FilterFacade',
'EmailHandler' => 'Botble\\Base\\Facades\\EmailHandlerFacade',
'Breadcrumbs' => 'Botble\\Base\\Facades\\BreadcrumbsFacade',
'MacroableModels' => 'Botble\\Base\\Facades\\MacroableModelsFacade',
'JsValidator' => 'Botble\\JsValidation\\Facades\\JsValidatorFacade',
'Action' => 'Botble\\Base\\Facades\\Action',
'Assets' => 'Botble\\Base\\Facades\\Assets',
'BaseHelper' => 'Botble\\Base\\Facades\\BaseHelper',
'Breadcrumbs' => 'Botble\\Base\\Facades\\Breadcrumbs',
'DashboardMenu' => 'Botble\\Base\\Facades\\DashboardMenu',
'EmailHandler' => 'Botble\\Base\\Facades\\EmailHandler',
'Filter' => 'Botble\\Base\\Facades\\Filter',
'Form' => 'Botble\\Base\\Facades\\Form',
'Html' => 'Botble\\Base\\Facades\\Html',
'MacroableModels' => 'Botble\\Base\\Facades\\MacroableModels',
'MetaBox' => 'Botble\\Base\\Facades\\MetaBox',
'PageTitle' => 'Botble\\Base\\Facades\\PageTitle',
'JsValidator' => 'Botble\\JsValidation\\Facades\\JsValidator',
'Setting' => 'Botble\\Setting\\Facades\\Setting',
'RvMedia' => 'Botble\\Media\\Facades\\RvMedia',
),
),
'botble/plugin-generator' =>
Expand Down Expand Up @@ -146,7 +168,7 @@
),
'aliases' =>
array (
'SeoHelper' => 'Botble\\SeoHelper\\Facades\\SeoHelperFacade',
'SeoHelper' => 'Botble\\SeoHelper\\Facades\\SeoHelper',
),
),
'botble/shortcode' =>
Expand All @@ -155,6 +177,10 @@
array (
0 => 'Botble\\Shortcode\\Providers\\ShortcodeServiceProvider',
),
'aliases' =>
array (
'Shortcode' => 'Botble\\Shortcode\\Facades\\Shortcode',
),
),
'botble/sitemap' =>
array (
Expand All @@ -171,7 +197,7 @@
),
'aliases' =>
array (
'SlugHelper' => 'Botble\\Slug\\Facades\\SlugHelperFacade',
'SlugHelper' => 'Botble\\Slug\\Facades\\SlugHelper',
),
),
'botble/theme' =>
Expand All @@ -183,11 +209,11 @@
),
'aliases' =>
array (
'Theme' => 'Botble\\Theme\\Facades\\ThemeFacade',
'ThemeOption' => 'Botble\\Theme\\Facades\\ThemeOptionFacade',
'ThemeManager' => 'Botble\\Theme\\Facades\\ManagerFacade',
'AdminBar' => 'Botble\\Theme\\Facades\\AdminBarFacade',
'SiteMapManager' => 'Botble\\Theme\\Facades\\SiteMapManagerFacade',
'Theme' => 'Botble\\Theme\\Facades\\Theme',
'ThemeOption' => 'Botble\\Theme\\Facades\\ThemeOption',
'ThemeManager' => 'Botble\\Theme\\Facades\\Manager',
'AdminBar' => 'Botble\\Theme\\Facades\\AdminBar',
'SiteMapManager' => 'Botble\\Theme\\Facades\\SiteMapManager',
),
),
'botble/theme-generator' =>
Expand All @@ -205,8 +231,8 @@
),
'aliases' =>
array (
'Widget' => 'Botble\\Widget\\Facades\\WidgetFacade',
'WidgetGroup' => 'Botble\\Widget\\Facades\\WidgetGroupFacade',
'Widget' => 'Botble\\Widget\\Facades\\Widget',
'WidgetGroup' => 'Botble\\Widget\\Facades\\WidgetGroup',
),
),
'botble/widget-generator' =>
Expand Down Expand Up @@ -245,13 +271,6 @@
'MacroableModels' => 'Javoscript\\MacroableModels\\Facades\\MacroableModels',
),
),
'knuckleswtf/scribe' =>
array (
'providers' =>
array (
0 => 'Knuckles\\Scribe\\ScribeServiceProvider',
),
),
'kris/laravel-form-builder' =>
array (
'providers' =>
Expand All @@ -270,13 +289,6 @@
0 => 'Lab404\\Impersonate\\ImpersonateServiceProvider',
),
),
'laravel/passport' =>
array (
'providers' =>
array (
0 => 'Laravel\\Passport\\PassportServiceProvider',
),
),
'laravel/sail' =>
array (
'providers' =>
Expand Down Expand Up @@ -382,6 +394,13 @@
0 => 'Termwind\\Laravel\\TermwindServiceProvider',
),
),
'spatie/laravel-feed' =>
array (
'providers' =>
array (
0 => 'Spatie\\Feed\\FeedServiceProvider',
),
),
'spatie/laravel-ignition' =>
array (
'providers' =>
Expand All @@ -407,6 +426,17 @@
0 => 'EloquentFilter\\ServiceProvider',
),
),
'unicodeveloper/laravel-paystack' =>
array (
'providers' =>
array (
0 => 'Unicodeveloper\\Paystack\\PaystackServiceProvider',
),
'aliases' =>
array (
'Paystack' => 'Unicodeveloper\\Paystack\\Facades\\Paystack',
),
),
'yajra/laravel-datatables-buttons' =>
array (
'providers' =>
Expand Down
30 changes: 0 additions & 30 deletions bootstrap/cache/plugins.php

This file was deleted.

Loading