first commit

This commit is contained in:
2025-11-06 06:55:15 +00:00
commit 0b603376d2
107 changed files with 17279 additions and 0 deletions

0
resources/css/app.css Normal file
View File

1
resources/js/app.js Normal file
View File

@@ -0,0 +1 @@
import './bootstrap';

32
resources/js/bootstrap.js vendored Normal file
View File

@@ -0,0 +1,32 @@
/**
* We'll load the axios HTTP library which allows us to easily issue requests
* to our Laravel back-end. This library automatically handles sending the
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
import axios from 'axios';
window.axios = axios;
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
// import Echo from 'laravel-echo';
// import Pusher from 'pusher-js';
// window.Pusher = Pusher;
// window.Echo = new Echo({
// broadcaster: 'pusher',
// key: import.meta.env.VITE_PUSHER_APP_KEY,
// cluster: import.meta.env.VITE_PUSHER_APP_CLUSTER ?? 'mt1',
// wsHost: import.meta.env.VITE_PUSHER_HOST ? import.meta.env.VITE_PUSHER_HOST : `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`,
// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80,
// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443,
// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https',
// enabledTransports: ['ws', 'wss'],
// });

View File

@@ -0,0 +1,28 @@
<?php
return [
'categories_retrieved' => 'Categories retrieved successfully',
'category_not_found' => 'Category not found',
'category_retrieved' => 'Category retrieved successfully',
'category_created' => 'Category created successfully',
'category_updated' => 'Category updated successfully',
'category_deleted' => 'Category deleted successfully',
'category_not_active' => 'Category is not active or does not exist.',
'menus_fetched' => 'Menus fetched successfully',
'menu_not_found' => 'Menu not found',
'menu_fetched' => 'Menu fetched successfully',
'menu_created' => 'Menu created successfully',
'menu_updated' => 'Menu updated successfully',
'menu_deleted' => 'Menu deleted successfully',
'invalid_credentials' => 'The provided credentials are incorrect.',
'authorized' => 'Authorized successfully',
'account_created' => 'Account created successfully',
'passwords_not_same' => 'Password and confirm password are not same',
'password_updated' => 'Password updated successfully',
'token_updated' => 'Token updated successfully',
'user_updated' => 'User updated successfully',
'not_authorized' => 'You are not authorized to perform this action',
'user_not_deletable' => 'This user cannot be deleted.',
'account_deletion_review' => 'Your account deletion request is in review. If you want to cancel it, kindly contact support team.',
'account_deletion_received' => 'Account deletion request has been received. We will review your account for any outstanding payments and will delete your account. This process may take 3-5 business days. Thanks for using our services.',
'menus_imported' => 'Menus imported successfully',
];

View File

@@ -0,0 +1,27 @@
<?php
return [
'categories_retrieved' => 'Categorie recuperate con successo',
'category_not_found' => 'Categoria non trovata',
'category_retrieved' => 'Categoria recuperata con successo',
'category_created' => 'Categoria creata con successo',
'category_updated' => 'Categoria aggiornata con successo',
'category_deleted' => 'Categoria eliminata con successo',
'category_not_active' => 'La categoria non è attiva o non esiste.',
'menus_fetched' => 'Menu recuperati con successo',
'menu_not_found' => 'Menu non trovato',
'menu_fetched' => 'Menu recuperato con successo',
'menu_created' => 'Menu creato con successo',
'menu_updated' => 'Menu aggiornato con successo',
'menu_deleted' => 'Menu eliminato con successo',
'invalid_credentials' => 'Le credenziali fornite non sono corrette.',
'authorized' => 'Autorizzato con successo',
'account_created' => 'Account creato con successo',
'passwords_not_same' => 'La password e la conferma password non sono uguali',
'password_updated' => 'Password aggiornata con successo',
'token_updated' => 'Token aggiornato con successo',
'user_updated' => 'Utente aggiornato con successo',
'not_authorized' => 'Non sei autorizzato a eseguire questa azione',
'user_not_deletable' => 'Questo utente non può essere eliminato.',
'account_deletion_review' => 'La richiesta di eliminazione del tuo account è in revisione. Se vuoi annullarla, contatta il supporto.',
'account_deletion_received' => 'La richiesta di eliminazione dell\'account è stata ricevuta. Verificheremo eventuali pagamenti in sospeso e procederemo con l\'eliminazione. Questo processo può richiedere 3-5 giorni lavorativi. Grazie per aver utilizzato i nostri servizi.',
];

File diff suppressed because one or more lines are too long