-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update onboarding with filament forms (#255)
* Update onboarding with filament forms * fix code formatting --------- Co-authored-by: mckenziearts <[email protected]>
- Loading branch information
1 parent
a897740
commit 3afdb5c
Showing
19 changed files
with
401 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
return [ | ||
|
||
'title' => 'Shop Initialization', | ||
'step_one_title' => 'Information', | ||
'step_one_description' => 'Provide useful information for your store.', | ||
'step_two_title' => 'Address', | ||
'step_two_description' => 'Provide store address information.', | ||
'step_tree_title' => 'Social Links', | ||
'step_tree_description' => 'Links to your social media accounts.', | ||
|
||
'step' => 'Step :step of 3', | ||
'shop_configuration' => 'Shop configuration', | ||
'step_1' => 'Step 1 - Shop information', | ||
'tell_about' => 'Tell us about your Shop', | ||
'step_1_description' => 'This information will be useful if you want users of your site to directly contact you by email or by your phone number.', | ||
|
||
'step_2' => 'Step 2 - Address information', | ||
'address_description' => 'You must specify address and location of your shop', | ||
'step_2_description' => 'Don\'t worry. You can change these settings at any time. Shopper allows you to start with the smallest level so that you can see the evolution of your shop.', | ||
|
||
'step_3' => 'Step 3 - Social links', | ||
'social_description' => 'Your shop on social networks', | ||
'step_3_description' => 'You can add links to your social media accounts so that your shop can be found easily on your social media pages.', | ||
'action' => 'Save', | ||
|
||
'about_description' => 'You can add this information to an "About" page on your website.', | ||
'currencies_description' => 'These are the currencies in which the products will be sold in your store.', | ||
'currency_description' => 'This is the main currency that will be displayed on your store.', | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
return [ | ||
|
||
'title' => 'Configuration de la boutique', | ||
'step_one_title' => 'Information', | ||
'step_one_description' => 'Fournissez des informations utiles pour votre magasin.', | ||
'step_two_title' => 'Adresse', | ||
'step_two_description' => 'Indiquez l\'adresse du magasin.', | ||
'step_tree_title' => 'Liens sociaux', | ||
'step_tree_description' => 'Liens vers vos comptes de médias sociaux.', | ||
|
||
'step' => 'Étape :step sur 3', | ||
'shop_configuration' => 'Configuration de la boutique', | ||
'step_1' => 'Étape 1 - Informations sur le magasin', | ||
'tell_about' => 'Parlez-nous de votre boutique', | ||
'step_1_description' => 'Ces informations seront utiles si vous souhaitez que les utilisateurs de votre site vous contactent directement par e-mail ou par votre numéro de téléphone.', | ||
|
||
'step_2' => 'Étape 2 - Informations sur l\'adresse', | ||
'address_description' => 'Vous devez préciser l\'adresse et la localisation de votre magasin', | ||
'step_2_description' => 'Ne vous inquiétez pas. Vous pouvez modifier ces paramètres à tout moment. Shopper vous permet de commencer par le plus petit niveau afin que vous puissiez voir l\'évolution de votre boutique.', | ||
|
||
'step_3' => 'Étape 3 - Liens sociaux', | ||
'social_description' => 'Votre boutique sur les réseaux sociaux.', | ||
'step_3_description' => 'Vous pouvez ajouter des liens vers vos comptes de médias sociaux afin que votre boutique puisse être trouvée facilement sur vos pages de médias sociaux.', | ||
'action' => 'Configurer ma boutique', | ||
|
||
'about_description' => 'Vous pouvez rajouter ces informations sur une page "À propos" de votre site web.', | ||
'currencies_description' => 'Ce sont les devises dans lesquels les produits seront vendus dans votre boutique', | ||
'currency_description' => "Il s'agit de la devise principale qui sera affiché sur votre boutique.", | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
@if (filled($brand = config('shopper.admin.brand'))) | ||
<img {{ $attributes }} src="{{ asset($brand) }}" alt="{{ config('app.name') }}" /> | ||
@else | ||
<img {{ $attributes }} src="{{ asset('shopper/images/shopper-icon.svg') }}" alt="Laravel Shopper" /> | ||
<img | ||
{{ $attributes }} | ||
src="{{ asset(shopper()->prefix() . '/images/shopper-icon.svg') }}" | ||
alt="Laravel Shopper" | ||
/> | ||
@endif |
28 changes: 23 additions & 5 deletions
28
packages/admin/resources/views/components/favicons.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.