first commit
This commit is contained in:
18
.editorconfig
Normal file
18
.editorconfig
Normal file
@ -0,0 +1,18 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[compose.yaml]
|
||||
indent_size = 4
|
||||
65
.env.example
Normal file
65
.env.example
Normal file
@ -0,0 +1,65 @@
|
||||
APP_NAME=Laravel
|
||||
APP_ENV=local
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
||||
APP_LOCALE=en
|
||||
APP_FALLBACK_LOCALE=en
|
||||
APP_FAKER_LOCALE=en_US
|
||||
|
||||
APP_MAINTENANCE_DRIVER=file
|
||||
# APP_MAINTENANCE_STORE=database
|
||||
|
||||
# PHP_CLI_SERVER_WORKERS=4
|
||||
|
||||
BCRYPT_ROUNDS=12
|
||||
|
||||
LOG_CHANNEL=stack
|
||||
LOG_STACK=single
|
||||
LOG_DEPRECATIONS_CHANNEL=null
|
||||
LOG_LEVEL=debug
|
||||
|
||||
DB_CONNECTION=sqlite
|
||||
# DB_HOST=127.0.0.1
|
||||
# DB_PORT=3306
|
||||
# DB_DATABASE=laravel
|
||||
# DB_USERNAME=root
|
||||
# DB_PASSWORD=
|
||||
|
||||
SESSION_DRIVER=database
|
||||
SESSION_LIFETIME=120
|
||||
SESSION_ENCRYPT=false
|
||||
SESSION_PATH=/
|
||||
SESSION_DOMAIN=null
|
||||
|
||||
BROADCAST_CONNECTION=log
|
||||
FILESYSTEM_DISK=local
|
||||
QUEUE_CONNECTION=database
|
||||
|
||||
CACHE_STORE=database
|
||||
# CACHE_PREFIX=
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_CLIENT=phpredis
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
MAIL_MAILER=log
|
||||
MAIL_SCHEME=null
|
||||
MAIL_HOST=127.0.0.1
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_FROM_ADDRESS="hello@example.com"
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_DEFAULT_REGION=us-east-1
|
||||
AWS_BUCKET=
|
||||
AWS_USE_PATH_STYLE_ENDPOINT=false
|
||||
|
||||
VITE_APP_NAME="${APP_NAME}"
|
||||
11
.gitattributes
vendored
Normal file
11
.gitattributes
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
* text=auto eol=lf
|
||||
|
||||
*.blade.php diff=html
|
||||
*.css diff=css
|
||||
*.html diff=html
|
||||
*.md diff=markdown
|
||||
*.php diff=php
|
||||
|
||||
/.github export-ignore
|
||||
CHANGELOG.md export-ignore
|
||||
.styleci.yml export-ignore
|
||||
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
*.log
|
||||
.DS_Store
|
||||
.env
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
.phpunit.result.cache
|
||||
/.fleet
|
||||
/.idea
|
||||
/.nova
|
||||
/.phpunit.cache
|
||||
/.vscode
|
||||
/.zed
|
||||
/auth.json
|
||||
/node_modules
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/storage/pail
|
||||
/vendor
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
Thumbs.db
|
||||
59
README.md
Normal file
59
README.md
Normal file
@ -0,0 +1,59 @@
|
||||
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
|
||||
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
|
||||
</p>
|
||||
|
||||
## About Laravel
|
||||
|
||||
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
|
||||
|
||||
- [Simple, fast routing engine](https://laravel.com/docs/routing).
|
||||
- [Powerful dependency injection container](https://laravel.com/docs/container).
|
||||
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
|
||||
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
|
||||
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
|
||||
- [Robust background job processing](https://laravel.com/docs/queues).
|
||||
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
|
||||
|
||||
Laravel is accessible, powerful, and provides tools required for large, robust applications.
|
||||
|
||||
## Learning Laravel
|
||||
|
||||
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. You can also check out [Laravel Learn](https://laravel.com/learn), where you will be guided through building a modern Laravel application.
|
||||
|
||||
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
|
||||
|
||||
## Laravel Sponsors
|
||||
|
||||
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
|
||||
|
||||
### Premium Partners
|
||||
|
||||
- **[Vehikl](https://vehikl.com)**
|
||||
- **[Tighten Co.](https://tighten.co)**
|
||||
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
|
||||
- **[64 Robots](https://64robots.com)**
|
||||
- **[Curotec](https://www.curotec.com/services/technologies/laravel)**
|
||||
- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
|
||||
- **[Redberry](https://redberry.international/laravel-development)**
|
||||
- **[Active Logic](https://activelogic.com)**
|
||||
|
||||
## Contributing
|
||||
|
||||
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
|
||||
|
||||
## Security Vulnerabilities
|
||||
|
||||
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
|
||||
|
||||
## License
|
||||
|
||||
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
||||
131
app/Helpers/GeoHelper.php
Normal file
131
app/Helpers/GeoHelper.php
Normal file
@ -0,0 +1,131 @@
|
||||
<?php
|
||||
|
||||
namespace App\Helpers;
|
||||
|
||||
class GeoHelper
|
||||
{
|
||||
/**
|
||||
* Calculate distance between two coordinates using Haversine formula
|
||||
*
|
||||
* @param float $lat1 Latitude of point 1
|
||||
* @param float $lng1 Longitude of point 1
|
||||
* @param float $lat2 Latitude of point 2
|
||||
* @param float $lng2 Longitude of point 2
|
||||
* @return float Distance in kilometers
|
||||
*/
|
||||
public static function haversineDistance(float $lat1, float $lng1, float $lat2, float $lng2): float
|
||||
{
|
||||
$R = 6371; // Earth's radius in km
|
||||
|
||||
$dLat = deg2rad($lat2 - $lat1);
|
||||
$dLng = deg2rad($lng2 - $lng1);
|
||||
|
||||
$a = sin($dLat / 2) * sin($dLat / 2) +
|
||||
cos(deg2rad($lat1)) * cos(deg2rad($lat2)) *
|
||||
sin($dLng / 2) * sin($dLng / 2);
|
||||
|
||||
$c = 2 * atan2(sqrt($a), sqrt(1 - $a));
|
||||
|
||||
return $R * $c;
|
||||
}
|
||||
|
||||
/**
|
||||
* Optimize route using Nearest Neighbor algorithm
|
||||
*
|
||||
* @param array $targets Array of targets with lat/lng properties
|
||||
* @return array ['order' => array, 'totalDistance' => float]
|
||||
*/
|
||||
public static function optimizeRouteNearestNeighbor(array $targets): array
|
||||
{
|
||||
$n = count($targets);
|
||||
|
||||
if ($n <= 2) {
|
||||
$totalDistance = 0;
|
||||
if ($n === 2) {
|
||||
$totalDistance = self::haversineDistance(
|
||||
$targets[0]['latitude'] ?? $targets[0]['lat'],
|
||||
$targets[0]['longitude'] ?? $targets[0]['lng'],
|
||||
$targets[1]['latitude'] ?? $targets[1]['lat'],
|
||||
$targets[1]['longitude'] ?? $targets[1]['lng']
|
||||
);
|
||||
}
|
||||
return [
|
||||
'order' => array_keys($targets),
|
||||
'totalDistance' => round($totalDistance, 2)
|
||||
];
|
||||
}
|
||||
|
||||
$visited = array_fill(0, $n, false);
|
||||
$route = [];
|
||||
$totalDistance = 0;
|
||||
|
||||
// Start from first target
|
||||
$current = 0;
|
||||
$visited[$current] = true;
|
||||
$route[] = $current;
|
||||
|
||||
// Find nearest unvisited neighbor
|
||||
for ($i = 1; $i < $n; $i++) {
|
||||
$nearest = -1;
|
||||
$minDist = PHP_FLOAT_MAX;
|
||||
|
||||
$currentLat = $targets[$current]['latitude'] ?? $targets[$current]['lat'];
|
||||
$currentLng = $targets[$current]['longitude'] ?? $targets[$current]['lng'];
|
||||
|
||||
for ($j = 0; $j < $n; $j++) {
|
||||
if (!$visited[$j]) {
|
||||
$targetLat = $targets[$j]['latitude'] ?? $targets[$j]['lat'];
|
||||
$targetLng = $targets[$j]['longitude'] ?? $targets[$j]['lng'];
|
||||
|
||||
$dist = self::haversineDistance($currentLat, $currentLng, $targetLat, $targetLng);
|
||||
|
||||
if ($dist < $minDist) {
|
||||
$minDist = $dist;
|
||||
$nearest = $j;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($nearest !== -1) {
|
||||
$visited[$nearest] = true;
|
||||
$route[] = $nearest;
|
||||
$totalDistance += $minDist;
|
||||
$current = $nearest;
|
||||
}
|
||||
}
|
||||
|
||||
return [
|
||||
'order' => $route,
|
||||
'totalDistance' => round($totalDistance, 2)
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate total distance of a route
|
||||
*
|
||||
* @param array $targets Array of targets in order
|
||||
* @return float Total distance in kilometers
|
||||
*/
|
||||
public static function calculateRouteDistance(array $targets): float
|
||||
{
|
||||
if (count($targets) < 2) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
$totalDistance = 0;
|
||||
|
||||
for ($i = 0; $i < count($targets) - 1; $i++) {
|
||||
$t1 = $targets[$i];
|
||||
$t2 = $targets[$i + 1];
|
||||
|
||||
$totalDistance += self::haversineDistance(
|
||||
$t1['latitude'] ?? $t1['lat'],
|
||||
$t1['longitude'] ?? $t1['lng'],
|
||||
$t2['latitude'] ?? $t2['lat'],
|
||||
$t2['longitude'] ?? $t2['lng']
|
||||
);
|
||||
}
|
||||
|
||||
return round($totalDistance, 2);
|
||||
}
|
||||
}
|
||||
8
app/Http/Controllers/Controller.php
Normal file
8
app/Http/Controllers/Controller.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
abstract class Controller
|
||||
{
|
||||
//
|
||||
}
|
||||
172
app/Http/Controllers/CustomerController.php
Normal file
172
app/Http/Controllers/CustomerController.php
Normal file
@ -0,0 +1,172 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Customer;
|
||||
use App\Models\User;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class CustomerController extends Controller
|
||||
{
|
||||
/**
|
||||
* GET /api/customers
|
||||
* List all customers with searching/filtering
|
||||
*/
|
||||
public function index(Request $request): JsonResponse
|
||||
{
|
||||
$query = Customer::with('sales:id,employee_id,name,color');
|
||||
|
||||
// Search by name, owner, phone, city
|
||||
if ($request->has('q') && !empty($request->q)) {
|
||||
$search = $request->q;
|
||||
$query->where(function ($q) use ($search) {
|
||||
$q->where('name', 'like', "%{$search}%")
|
||||
->orWhere('owner_name', 'like', "%{$search}%")
|
||||
->orWhere('city', 'like', "%{$search}%")
|
||||
->orWhere('phone', 'like', "%{$search}%");
|
||||
});
|
||||
}
|
||||
|
||||
// Filter by sales PIC
|
||||
if ($request->has('salesId')) {
|
||||
$query->whereHas('sales', function ($q) use ($request) {
|
||||
$q->where('employee_id', $request->salesId);
|
||||
});
|
||||
}
|
||||
|
||||
$customers = $query->orderBy('name', 'asc')->get();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'customers' => $customers->map(fn($c) => $this->formatCustomer($c)),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/customers
|
||||
* Create new customer (Backend & Mobile Prospect)
|
||||
*/
|
||||
public function store(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'name' => 'required|string|max:255',
|
||||
'latitude' => 'nullable|numeric',
|
||||
'longitude' => 'nullable|numeric',
|
||||
]);
|
||||
|
||||
$picSalesId = null;
|
||||
if ($request->has('pic_sales_id')) { // backend sends ID
|
||||
$picSalesId = $request->pic_sales_id;
|
||||
} elseif ($request->has('user_id')) { // mobile sends employee_id
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if ($user)
|
||||
$picSalesId = $user->id;
|
||||
}
|
||||
|
||||
$customer = Customer::create([
|
||||
'name' => $request->name,
|
||||
'address' => $request->address,
|
||||
'owner_name' => $request->owner_name,
|
||||
'phone' => $request->phone,
|
||||
'latitude' => $request->latitude,
|
||||
'longitude' => $request->longitude,
|
||||
'city' => $request->city,
|
||||
'pic_sales_id' => $picSalesId,
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'data' => $this->formatCustomer($customer),
|
||||
'message' => 'Customer created successfully',
|
||||
], 201);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/customers/{id}
|
||||
*/
|
||||
public function show(string $id): JsonResponse
|
||||
{
|
||||
$customer = Customer::with('sales')->find($id);
|
||||
|
||||
if (!$customer) {
|
||||
return response()->json(['success' => false, 'error' => 'Customer not found'], 404);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'customer' => $this->formatCustomer($customer),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* PUT /api/customers/{id}
|
||||
*/
|
||||
public function update(Request $request, string $id): JsonResponse
|
||||
{
|
||||
$customer = Customer::find($id);
|
||||
|
||||
if (!$customer) {
|
||||
return response()->json(['success' => false, 'error' => 'Customer not found'], 404);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'name' => 'sometimes|required|string|max:255',
|
||||
'latitude' => 'nullable|numeric',
|
||||
'longitude' => 'nullable|numeric',
|
||||
]);
|
||||
|
||||
$data = $request->all();
|
||||
|
||||
// Handle PIC Sales update
|
||||
if ($request->has('pic_sales_id')) {
|
||||
$data['pic_sales_id'] = $request->pic_sales_id;
|
||||
}
|
||||
|
||||
$customer->update($data);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'data' => $this->formatCustomer($customer),
|
||||
'message' => 'Customer updated successfully',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* DELETE /api/customers/{id}
|
||||
*/
|
||||
public function destroy(string $id): JsonResponse
|
||||
{
|
||||
$customer = Customer::find($id);
|
||||
|
||||
if (!$customer) {
|
||||
return response()->json(['success' => false, 'error' => 'Customer not found'], 404);
|
||||
}
|
||||
|
||||
$customer->delete();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Customer deleted successfully',
|
||||
]);
|
||||
}
|
||||
|
||||
// Helper format
|
||||
private function formatCustomer($c)
|
||||
{
|
||||
return [
|
||||
'id' => (string) $c->id,
|
||||
'name' => $c->name,
|
||||
'address' => $c->address,
|
||||
'owner_name' => $c->owner_name,
|
||||
'phone' => $c->phone,
|
||||
'latitude' => (float) $c->latitude,
|
||||
'longitude' => (float) $c->longitude,
|
||||
'city' => $c->city,
|
||||
'pic_sales_id' => $c->pic_sales_id ? (string) $c->pic_sales_id : null,
|
||||
'pic_sales_name' => $c->sales ? $c->sales->name : null,
|
||||
'pic_sales_employee_id' => $c->sales ? $c->sales->employee_id : null,
|
||||
'created_at' => $c->created_at->toISOString(),
|
||||
];
|
||||
}
|
||||
}
|
||||
667
app/Http/Controllers/GeoPlanController.php
Normal file
667
app/Http/Controllers/GeoPlanController.php
Normal file
@ -0,0 +1,667 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\User;
|
||||
use App\Models\SalesPlan;
|
||||
use App\Models\PlanTarget;
|
||||
use App\Helpers\GeoHelper;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class GeoPlanController extends Controller
|
||||
{
|
||||
/**
|
||||
* GET /api/sales-plans
|
||||
* Get all plans with optional filters
|
||||
*/
|
||||
public function index(Request $request): JsonResponse
|
||||
{
|
||||
$query = SalesPlan::with(['user:id,employee_id,name,color', 'targets']);
|
||||
|
||||
// Filter by date
|
||||
if ($request->has('date')) {
|
||||
$date = Carbon::parse($request->date, config('app.timezone'));
|
||||
$query->whereBetween('date', [
|
||||
$date->copy()->startOfDay(),
|
||||
$date->copy()->endOfDay()
|
||||
]);
|
||||
}
|
||||
|
||||
// Filter by salesId
|
||||
if ($request->has('salesId')) {
|
||||
$user = User::where('employee_id', $request->salesId)->first(['id']);
|
||||
if ($user) {
|
||||
$query->where('user_id', $user->id);
|
||||
} else {
|
||||
// User not found, return empty result
|
||||
$query->where('user_id', 'non_existent_id');
|
||||
}
|
||||
}
|
||||
|
||||
// Filter by status
|
||||
if ($request->has('status')) {
|
||||
$query->where('status', $request->status);
|
||||
}
|
||||
|
||||
$plans = $query->orderBy('date', 'desc')->get();
|
||||
|
||||
$formattedPlans = $plans->map(function ($plan) {
|
||||
return [
|
||||
'id' => (string) $plan->id,
|
||||
'salesId' => $plan->user->employee_id,
|
||||
'salesName' => $plan->user->name,
|
||||
'salesColor' => $plan->user->color,
|
||||
'date' => $plan->date->format('Y-m-d'),
|
||||
'status' => $plan->status,
|
||||
'createdAt' => $plan->created_at->toISOString(),
|
||||
'targets' => $plan->targets->map(fn($t) => [
|
||||
'id' => (string) $t->id,
|
||||
'lat' => (float) $t->latitude,
|
||||
'lng' => (float) $t->longitude,
|
||||
'name' => $t->name,
|
||||
'address' => $t->address ?? '',
|
||||
'order' => $t->order,
|
||||
'isCompleted' => $t->is_completed ?? false,
|
||||
'completedAt' => $t->completed_at ? $t->completed_at->toISOString() : null,
|
||||
]),
|
||||
'optimizedRoute' => $plan->optimized_route,
|
||||
'totalDistance' => $plan->total_distance_km,
|
||||
];
|
||||
});
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plans' => $formattedPlans,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/sales-plans/dates
|
||||
* Get available dates
|
||||
*/
|
||||
public function dates(): JsonResponse
|
||||
{
|
||||
// MongoDB Aggregation to get unique dates
|
||||
$rawDates = SalesPlan::raw(function ($collection) {
|
||||
return $collection->aggregate([
|
||||
[
|
||||
'$project' => [
|
||||
'dateOnly' => ['$dateToString' => ['format' => '%Y-%m-%d', 'date' => '$date']]
|
||||
]
|
||||
],
|
||||
[
|
||||
'$group' => [
|
||||
'_id' => '$dateOnly'
|
||||
]
|
||||
],
|
||||
[
|
||||
'$sort' => ['_id' => 1] // Ascending for Planner usually, but let's check original. Original was ASC.
|
||||
]
|
||||
]);
|
||||
});
|
||||
|
||||
$dates = collect($rawDates)->map(function ($item) {
|
||||
return $item['_id'];
|
||||
})->values();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'dates' => $dates,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/sales-plans/sales
|
||||
* Get sales list
|
||||
*/
|
||||
public function sales(): JsonResponse
|
||||
{
|
||||
$users = User::where('is_active', true)
|
||||
->where('role', 'sales')
|
||||
->get(['id', 'employee_id', 'name', 'color']);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'salesList' => $users->map(fn($u) => [
|
||||
'id' => $u->employee_id,
|
||||
'name' => $u->name,
|
||||
'color' => $u->color,
|
||||
]),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/sales-plans/{id}
|
||||
* Get single plan
|
||||
*/
|
||||
public function show(string $id): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::with(['user:id,employee_id,name,color', 'targets'])->find($id);
|
||||
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => [
|
||||
'id' => (string) $plan->id,
|
||||
'salesId' => $plan->user->employee_id,
|
||||
'salesName' => $plan->user->name,
|
||||
'salesColor' => $plan->user->color,
|
||||
'date' => $plan->date->format('Y-m-d'),
|
||||
'status' => $plan->status,
|
||||
'targets' => $plan->targets->map(fn($t) => [
|
||||
'id' => (string) $t->id,
|
||||
'lat' => (float) $t->latitude,
|
||||
'lng' => (float) $t->longitude,
|
||||
'name' => $t->name,
|
||||
'address' => $t->address ?? '',
|
||||
'order' => $t->order,
|
||||
'isCompleted' => $t->is_completed ?? false,
|
||||
'completedAt' => $t->completed_at ? $t->completed_at->toISOString() : null,
|
||||
]),
|
||||
'optimizedRoute' => $plan->optimized_route,
|
||||
'totalDistance' => $plan->total_distance_km,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/sales-plans
|
||||
* Create new plan
|
||||
*/
|
||||
public function store(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'salesId' => 'required|string',
|
||||
'date' => 'required|date',
|
||||
'targets' => 'array',
|
||||
]);
|
||||
|
||||
$user = User::where('employee_id', $request->salesId)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'Invalid salesId'], 400);
|
||||
}
|
||||
|
||||
$plan = SalesPlan::create([
|
||||
'user_id' => $user->id,
|
||||
'date' => $request->date,
|
||||
'status' => 'pending',
|
||||
]);
|
||||
|
||||
// Create targets
|
||||
$targets = collect($request->targets ?? [])->map(function ($t, $idx) use ($plan) {
|
||||
return PlanTarget::create([
|
||||
'sales_plan_id' => $plan->id,
|
||||
'order' => $idx + 1,
|
||||
'latitude' => $t['lat'],
|
||||
'longitude' => $t['lng'],
|
||||
'name' => $t['name'],
|
||||
'address' => $t['address'] ?? '',
|
||||
]);
|
||||
});
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => [
|
||||
'id' => (string) $plan->id,
|
||||
'salesId' => $user->employee_id,
|
||||
'salesName' => $user->name,
|
||||
'salesColor' => $user->color,
|
||||
'date' => $plan->date->format('Y-m-d'),
|
||||
'status' => $plan->status,
|
||||
'targets' => $targets->map(fn($t) => [
|
||||
'id' => (string) $t->id,
|
||||
'lat' => (float) $t->latitude,
|
||||
'lng' => (float) $t->longitude,
|
||||
'name' => $t->name,
|
||||
'address' => $t->address,
|
||||
'order' => $t->order,
|
||||
'isCompleted' => $t->is_completed ?? false,
|
||||
'completedAt' => $t->completed_at ? $t->completed_at->toISOString() : null,
|
||||
]),
|
||||
'optimizedRoute' => null,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* PUT /api/sales-plans/{id}
|
||||
* Update plan
|
||||
*/
|
||||
public function update(Request $request, string $id): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::with('user')->find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
if ($request->has('targets')) {
|
||||
// Delete existing targets
|
||||
$plan->targets()->delete();
|
||||
|
||||
// Create new targets
|
||||
foreach ($request->targets as $idx => $t) {
|
||||
PlanTarget::create([
|
||||
'sales_plan_id' => $plan->id,
|
||||
'order' => $idx + 1,
|
||||
'latitude' => $t['lat'],
|
||||
'longitude' => $t['lng'],
|
||||
'name' => $t['name'],
|
||||
'address' => $t['address'] ?? '',
|
||||
]);
|
||||
}
|
||||
|
||||
$plan->status = 'pending';
|
||||
$plan->optimized_route = null;
|
||||
}
|
||||
|
||||
if ($request->has('date')) {
|
||||
$plan->date = $request->date;
|
||||
}
|
||||
|
||||
if ($request->has('salesId')) {
|
||||
$user = User::where('employee_id', $request->salesId)->first();
|
||||
if ($user) {
|
||||
$plan->user_id = $user->id;
|
||||
}
|
||||
}
|
||||
|
||||
$plan->save();
|
||||
$plan->load(['user', 'targets']);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* DELETE /api/sales-plans/{id}
|
||||
* Delete plan
|
||||
*/
|
||||
public function destroy(string $id): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
$plan->targets()->delete();
|
||||
$plan->delete();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Plan deleted',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/sales-plans/{id}/optimize
|
||||
* Optimize route using Nearest Neighbor algorithm
|
||||
*/
|
||||
public function optimize(string $id): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::with(['user', 'targets'])->find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
$targets = $plan->targets->toArray();
|
||||
if (count($targets) < 2) {
|
||||
return response()->json(['success' => false, 'error' => 'Need at least 2 targets to optimize'], 400);
|
||||
}
|
||||
|
||||
// Store original order
|
||||
$originalOrder = array_keys($targets);
|
||||
|
||||
// Run optimization
|
||||
$result = GeoHelper::optimizeRouteNearestNeighbor($targets);
|
||||
$optimizedOrder = $result['order'];
|
||||
$totalDistance = $result['totalDistance'];
|
||||
|
||||
// Reorder targets
|
||||
foreach ($optimizedOrder as $newOrder => $originalIdx) {
|
||||
PlanTarget::where('id', $targets[$originalIdx]['id'])
|
||||
->update(['order' => $newOrder + 1]);
|
||||
}
|
||||
|
||||
// Update plan
|
||||
$plan->status = 'optimized';
|
||||
$plan->optimized_at = now();
|
||||
$plan->optimized_route = $optimizedOrder;
|
||||
$plan->total_distance_km = $totalDistance;
|
||||
$plan->save();
|
||||
|
||||
$plan->load('targets');
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
'optimization' => [
|
||||
'originalOrder' => $originalOrder,
|
||||
'optimizedOrder' => $optimizedOrder,
|
||||
'totalDistanceKm' => $totalDistance,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/sales-plans/{id}/add-target
|
||||
* Add target to existing plan
|
||||
*/
|
||||
public function addTarget(Request $request, string $id): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::with('user')->find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'lat' => 'required|numeric',
|
||||
'lng' => 'required|numeric',
|
||||
'name' => 'required|string',
|
||||
]);
|
||||
|
||||
$maxOrder = $plan->targets()->max('order') ?? 0;
|
||||
|
||||
$target = PlanTarget::create([
|
||||
'sales_plan_id' => $plan->id,
|
||||
'order' => $maxOrder + 1,
|
||||
'latitude' => $request->lat,
|
||||
'longitude' => $request->lng,
|
||||
'name' => $request->name,
|
||||
'address' => $request->address ?? '',
|
||||
'source' => 'mobile_manual', // Differentiate from admin plan
|
||||
]);
|
||||
|
||||
$plan->status = 'pending';
|
||||
$plan->optimized_route = null;
|
||||
$plan->save();
|
||||
$plan->load('targets');
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
'newTarget' => [
|
||||
'id' => (string) $target->id,
|
||||
'lat' => (float) $target->latitude,
|
||||
'lng' => (float) $target->longitude,
|
||||
'name' => $target->name,
|
||||
'address' => $target->address,
|
||||
'order' => $target->order,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* PUT /api/sales-plans/{id}/target/{targetId}
|
||||
* Update existing target
|
||||
*/
|
||||
public function updateTarget(Request $request, string $id, string $targetId): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
$target = PlanTarget::where('id', $targetId)
|
||||
->where('sales_plan_id', $plan->id)
|
||||
->first();
|
||||
|
||||
if (!$target) {
|
||||
return response()->json(['success' => false, 'error' => 'Target not found'], 404);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'lat' => 'nullable|numeric',
|
||||
'lng' => 'nullable|numeric',
|
||||
'name' => 'nullable|string',
|
||||
]);
|
||||
|
||||
if ($request->has('name'))
|
||||
$target->name = $request->name;
|
||||
if ($request->has('address'))
|
||||
$target->address = $request->address;
|
||||
if ($request->has('lat'))
|
||||
$target->latitude = $request->lat;
|
||||
if ($request->has('lng'))
|
||||
$target->longitude = $request->lng;
|
||||
|
||||
$target->save();
|
||||
|
||||
// Mark plan as pending optimization
|
||||
$plan->status = 'pending';
|
||||
$plan->optimized_route = null;
|
||||
$plan->save();
|
||||
$plan->load(['user', 'targets']); // Reload user relation too just in case formatPlan needs it
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
'target' => [
|
||||
'id' => (string) $target->id,
|
||||
'lat' => (float) $target->latitude,
|
||||
'lng' => (float) $target->longitude,
|
||||
'name' => $target->name,
|
||||
'address' => $target->address,
|
||||
'order' => $target->order,
|
||||
'isCompleted' => $target->is_completed ?? false,
|
||||
'completedAt' => $target->completed_at ? $target->completed_at->toISOString() : null,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* DELETE /api/sales-plans/{id}/target/{targetId}
|
||||
* Remove target from plan
|
||||
*/
|
||||
public function removeTarget(string $id, string $targetId): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::with('user')->find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
$target = PlanTarget::where('id', $targetId)
|
||||
->where('sales_plan_id', $plan->id)
|
||||
->first();
|
||||
|
||||
if (!$target) {
|
||||
return response()->json(['success' => false, 'error' => 'Target not found'], 404);
|
||||
}
|
||||
|
||||
$target->delete();
|
||||
|
||||
// Reorder remaining targets
|
||||
$plan->targets()->orderBy('order')->get()->each(function ($t, $idx) {
|
||||
$t->update(['order' => $idx + 1]);
|
||||
});
|
||||
|
||||
$plan->status = 'pending';
|
||||
$plan->optimized_route = null;
|
||||
$plan->save();
|
||||
$plan->load('targets');
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/mobile/schedules/{id}/target/{targetId}/checkin
|
||||
* Check-in to target (mark as completed)
|
||||
*/
|
||||
public function checkinTarget(string $id, string $targetId): JsonResponse
|
||||
{
|
||||
$plan = SalesPlan::with('user')->find($id);
|
||||
if (!$plan) {
|
||||
return response()->json(['success' => false, 'error' => 'Plan not found'], 404);
|
||||
}
|
||||
|
||||
$target = PlanTarget::where('id', $targetId)
|
||||
->where('sales_plan_id', $plan->id)
|
||||
->first();
|
||||
|
||||
if (!$target) {
|
||||
return response()->json(['success' => false, 'error' => 'Target not found'], 404);
|
||||
}
|
||||
|
||||
$target->is_completed = true;
|
||||
$target->completed_at = now();
|
||||
$target->save();
|
||||
|
||||
// Refresh plan
|
||||
$plan->load('targets');
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/sales-plans/assign-target
|
||||
* Auto assign target to user's plan for today (find or create)
|
||||
*/
|
||||
public function autoAssignTarget(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'staffId' => 'required|string',
|
||||
'placeData' => 'required|array',
|
||||
'notes' => 'nullable|string',
|
||||
]);
|
||||
|
||||
$user = User::where('employee_id', $request->staffId)->first();
|
||||
// Fallback: check by mongo ID if not found by employee_id, or just assume input is right ID type
|
||||
if (!$user) {
|
||||
$user = User::find($request->staffId);
|
||||
}
|
||||
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'Staff/User not found'], 404);
|
||||
}
|
||||
|
||||
// Find or create plan for today in user's timezone (or app default)
|
||||
$today = now()->startOfDay();
|
||||
|
||||
$plan = SalesPlan::where('user_id', $user->id)
|
||||
->whereDate('date', $today)
|
||||
->first();
|
||||
|
||||
if (!$plan) {
|
||||
$plan = SalesPlan::create([
|
||||
'user_id' => $user->id,
|
||||
'date' => $today,
|
||||
'status' => 'pending',
|
||||
]);
|
||||
}
|
||||
|
||||
$place = $request->placeData;
|
||||
|
||||
// Calculate order
|
||||
$maxOrder = $plan->targets()->max('order') ?? 0;
|
||||
|
||||
$target = PlanTarget::create([
|
||||
'sales_plan_id' => $plan->id,
|
||||
'order' => $maxOrder + 1,
|
||||
'latitude' => $place['lat'],
|
||||
'longitude' => $place['lng'],
|
||||
'name' => $place['name'],
|
||||
'address' => $place['address'] ?? '',
|
||||
'notes' => $request->notes,
|
||||
'source' => 'web_assign',
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Target assigned successfully',
|
||||
'planId' => $plan->id
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format plan for response
|
||||
*/
|
||||
private function formatPlan(SalesPlan $plan): array
|
||||
{
|
||||
return [
|
||||
'id' => (string) $plan->id,
|
||||
'salesId' => $plan->user->employee_id,
|
||||
'salesName' => $plan->user->name,
|
||||
'salesColor' => $plan->user->color,
|
||||
'date' => $plan->date->format('Y-m-d'),
|
||||
'status' => $plan->status,
|
||||
'targets' => $plan->targets->map(fn($t) => [
|
||||
'id' => (string) $t->id,
|
||||
'lat' => (float) $t->latitude,
|
||||
'lng' => (float) $t->longitude,
|
||||
'name' => $t->name,
|
||||
'address' => $t->address ?? '',
|
||||
'order' => $t->order,
|
||||
'isCompleted' => $t->is_completed ?? false,
|
||||
'completedAt' => $t->completed_at ? $t->completed_at->toISOString() : null,
|
||||
]),
|
||||
'optimizedRoute' => $plan->optimized_route,
|
||||
'totalDistance' => $plan->total_distance_km,
|
||||
];
|
||||
}
|
||||
/**
|
||||
* GET /api/mobile/schedules
|
||||
* Get plan for specific user (for mobile app)
|
||||
*/
|
||||
public function getMobileSchedule(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string', // Employee ID
|
||||
'date' => 'nullable|date',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
// Get the date string for comparison (YYYY-MM-DD format)
|
||||
$dateStr = $request->date ?? now()->toDateString();
|
||||
|
||||
// Create date range for the entire day in local timezone (Asia/Jakarta)
|
||||
// This handles plans created with different timezone offsets
|
||||
$startOfDay = \Carbon\Carbon::parse($dateStr, config('app.timezone'))->startOfDay();
|
||||
$endOfDay = \Carbon\Carbon::parse($dateStr, config('app.timezone'))->endOfDay();
|
||||
|
||||
try {
|
||||
// First, try to find an existing plan for this user on this date
|
||||
$plan = SalesPlan::where('user_id', $user->id)
|
||||
->whereBetween('date', [$startOfDay, $endOfDay])
|
||||
->first();
|
||||
|
||||
// If no plan exists, create one
|
||||
if (!$plan) {
|
||||
$plan = SalesPlan::create([
|
||||
'user_id' => $user->id,
|
||||
'date' => $startOfDay, // Use local timezone start of day
|
||||
'status' => 'pending',
|
||||
'total_distance_km' => 0,
|
||||
]);
|
||||
}
|
||||
|
||||
$plan->load('targets');
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'plan' => $this->formatPlan($plan),
|
||||
]);
|
||||
} catch (\Throwable $e) {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'error' => 'Server Error: ' . $e->getMessage(),
|
||||
], 500);
|
||||
}
|
||||
}
|
||||
}
|
||||
711
app/Http/Controllers/GeoTrackController.php
Normal file
711
app/Http/Controllers/GeoTrackController.php
Normal file
@ -0,0 +1,711 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\User;
|
||||
use App\Models\SalesRoute;
|
||||
use App\Models\SalesRouteSummary;
|
||||
use App\Models\Waypoint;
|
||||
use App\Helpers\GeoHelper;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class GeoTrackController extends Controller
|
||||
{
|
||||
/**
|
||||
* GET /api/sales-routes
|
||||
* Get all routes with optional filters
|
||||
*/
|
||||
public function index(Request $request): JsonResponse
|
||||
{
|
||||
$query = SalesRoute::with('user:id,employee_id,name,color');
|
||||
|
||||
// Filter by date
|
||||
if ($request->has('date')) {
|
||||
$query->whereDate('date', $request->date);
|
||||
}
|
||||
|
||||
// Filter by salesId
|
||||
// Filter by salesId
|
||||
if ($request->has('salesId')) {
|
||||
$user = User::where('employee_id', $request->salesId)->first(['id']);
|
||||
if ($user) {
|
||||
$query->where('user_id', $user->id);
|
||||
} else {
|
||||
// If user not found with that employee_id, return empty result immediately
|
||||
// preventing return of all routes or failing
|
||||
$query->where('user_id', 'non_existent_id');
|
||||
}
|
||||
}
|
||||
|
||||
$routes = $query->orderBy('date', 'desc')->get();
|
||||
|
||||
// Format routes with waypoints
|
||||
$formattedRoutes = $routes->map(function ($route) use ($request) {
|
||||
$waypoints = $route->waypoints;
|
||||
|
||||
// Filter waypoints by time if specified
|
||||
if ($request->has('timeFrom') || $request->has('timeTo')) {
|
||||
$waypoints = $waypoints->filter(function ($wp) use ($request) {
|
||||
$wpTime = Carbon::parse($wp->recorded_at)->format('H:i');
|
||||
if ($request->timeFrom && $wpTime < $request->timeFrom)
|
||||
return false;
|
||||
if ($request->timeTo && $wpTime > $request->timeTo)
|
||||
return false;
|
||||
return true;
|
||||
})->values();
|
||||
}
|
||||
|
||||
return [
|
||||
'id' => (string) $route->id,
|
||||
'salesId' => $route->user->employee_id,
|
||||
'salesName' => $route->user->name,
|
||||
'salesColor' => $route->user->color,
|
||||
'date' => $route->date->format('Y-m-d'),
|
||||
'waypoints' => $waypoints->map(function ($wp) {
|
||||
return [
|
||||
'lat' => (float) $wp->latitude,
|
||||
'lng' => (float) $wp->longitude,
|
||||
'time' => Carbon::parse($wp->recorded_at)->format('H:i'),
|
||||
'location' => $wp->location_name ?? 'GPS Point',
|
||||
'type' => $wp->type,
|
||||
];
|
||||
})->values(),
|
||||
];
|
||||
})->filter(fn($route) => count($route['waypoints']) > 0)->values();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'summary' => [
|
||||
'totalRoutes' => $formattedRoutes->count(),
|
||||
'dateRange' => $request->date ?? 'all',
|
||||
'timeRange' => ($request->timeFrom || $request->timeTo)
|
||||
? ($request->timeFrom ?? '00:00') . ' - ' . ($request->timeTo ?? '23:59')
|
||||
: 'all',
|
||||
],
|
||||
'routes' => $formattedRoutes,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/sales-routes/dates
|
||||
* Get available dates
|
||||
*/
|
||||
public function dates(): JsonResponse
|
||||
{
|
||||
// MongoDB Aggregation to get unique dates
|
||||
$rawDates = SalesRoute::raw(function ($collection) {
|
||||
return $collection->aggregate([
|
||||
[
|
||||
'$project' => [
|
||||
'dateOnly' => ['$dateToString' => ['format' => '%Y-%m-%d', 'date' => '$date']]
|
||||
]
|
||||
],
|
||||
[
|
||||
'$group' => [
|
||||
'_id' => '$dateOnly'
|
||||
]
|
||||
],
|
||||
[
|
||||
'$sort' => ['_id' => -1]
|
||||
]
|
||||
]);
|
||||
});
|
||||
|
||||
$dates = collect($rawDates)->map(function ($item) {
|
||||
return $item['_id'];
|
||||
})->values();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'dates' => $dates,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/sales-routes/sales
|
||||
* Get sales list
|
||||
*/
|
||||
public function sales(): JsonResponse
|
||||
{
|
||||
$users = User::where('is_active', true)
|
||||
->where('role', 'sales')
|
||||
->get(['id', 'employee_id', 'name', 'color']);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'salesList' => $users->map(fn($u) => [
|
||||
'id' => $u->employee_id,
|
||||
'name' => $u->name,
|
||||
'color' => $u->color,
|
||||
]),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/sales-routes/{id}
|
||||
* Get single route
|
||||
*/
|
||||
public function show(string $id): JsonResponse
|
||||
{
|
||||
$route = SalesRoute::with(['user:id,employee_id,name,color', 'waypoints'])->find($id);
|
||||
|
||||
if (!$route) {
|
||||
return response()->json(['success' => false, 'error' => 'Route not found'], 404);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'route' => [
|
||||
'id' => (string) $route->id,
|
||||
'salesId' => $route->user->employee_id,
|
||||
'salesName' => $route->user->name,
|
||||
'salesColor' => $route->user->color,
|
||||
'date' => $route->date->format('Y-m-d'),
|
||||
'waypoints' => $route->waypoints->map(function ($wp) {
|
||||
return [
|
||||
'lat' => (float) $wp->latitude,
|
||||
'lng' => (float) $wp->longitude,
|
||||
'time' => Carbon::parse($wp->recorded_at)->format('H:i'),
|
||||
'location' => $wp->location_name ?? 'GPS Point',
|
||||
'type' => $wp->type,
|
||||
];
|
||||
}),
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/sales-routes/waypoints
|
||||
* Create waypoint (for mobile app)
|
||||
*/
|
||||
public function storeWaypoint(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
'type' => 'required|in:checkin,checkout,gps,lunch,visit',
|
||||
'latitude' => 'required|numeric',
|
||||
'longitude' => 'required|numeric',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
// Get or create today's route
|
||||
$today = Carbon::today();
|
||||
$route = SalesRoute::firstOrCreate(
|
||||
['user_id' => $user->id, 'date' => $today],
|
||||
['status' => 'active', 'started_at' => now()]
|
||||
);
|
||||
|
||||
// Create waypoint
|
||||
$waypoint = Waypoint::create([
|
||||
'sales_route_id' => $route->id,
|
||||
'type' => $request->type,
|
||||
'latitude' => $request->latitude,
|
||||
'longitude' => $request->longitude,
|
||||
'recorded_at' => now(),
|
||||
'location_name' => $request->location_name,
|
||||
'address' => $request->address,
|
||||
'notes' => $request->notes,
|
||||
'photo_url' => $request->photo_url,
|
||||
]);
|
||||
|
||||
// If checkout, update route status
|
||||
if ($request->type === 'checkout') {
|
||||
$waypoints = $route->waypoints()->get()->toArray();
|
||||
$totalDistance = GeoHelper::calculateRouteDistance($waypoints);
|
||||
|
||||
$firstWp = $route->waypoints()->orderBy('recorded_at')->first();
|
||||
$durationMinutes = $firstWp ? now()->diffInMinutes($firstWp->recorded_at) : 0;
|
||||
$visitCount = $route->waypoints()->where('type', 'visit')->count();
|
||||
|
||||
$route->update([
|
||||
'status' => 'completed',
|
||||
'ended_at' => now(),
|
||||
'total_distance_km' => $totalDistance,
|
||||
'total_distance_km' => $totalDistance,
|
||||
'total_duration_minutes' => $durationMinutes,
|
||||
'total_visits' => $visitCount,
|
||||
]);
|
||||
|
||||
// Save to Sales Link Summary
|
||||
SalesRouteSummary::create([
|
||||
'user_id' => $user->id,
|
||||
'sales_route_id' => $route->id,
|
||||
'date' => $today,
|
||||
'total_distance_km' => $totalDistance,
|
||||
'total_duration_minutes' => $durationMinutes,
|
||||
'total_visits' => $visitCount,
|
||||
'started_at' => $route->started_at,
|
||||
'ended_at' => now(),
|
||||
]);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'data' => [
|
||||
'id' => $waypoint->id,
|
||||
'sales_route_id' => $route->id,
|
||||
'type' => $waypoint->type,
|
||||
'latitude' => $waypoint->latitude,
|
||||
'longitude' => $waypoint->longitude,
|
||||
'recorded_at' => $waypoint->recorded_at,
|
||||
'location_name' => $waypoint->location_name,
|
||||
],
|
||||
'message' => 'Waypoint recorded successfully',
|
||||
]);
|
||||
}
|
||||
|
||||
// ============================================================
|
||||
// MOBILE API ENDPOINTS (For Flutter App)
|
||||
// ============================================================
|
||||
|
||||
/**
|
||||
* POST /api/mobile/login
|
||||
* Authenticate user and return settings + profile
|
||||
*/
|
||||
public function mobileLogin(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'username' => 'required|string',
|
||||
'password' => 'required',
|
||||
]);
|
||||
|
||||
// Login supports both email and employee_id (username) - case insensitive
|
||||
$username = strtolower($request->username);
|
||||
|
||||
// Find user by email or employee_id
|
||||
$user = User::where('email', $username)
|
||||
->orWhere('employee_id', $username)
|
||||
->first();
|
||||
|
||||
// Check password (Hash or plain text for legacy/demo)
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'Invalid credentials'], 401);
|
||||
}
|
||||
|
||||
// 1. Check Hashed Password (New Standard)
|
||||
if (Hash::check($request->password, $user->password)) {
|
||||
// Valid
|
||||
}
|
||||
// 2. Fallback: Check hardcoded 'password' for demo users who haven't changed pass yet
|
||||
// OR check plain text match if DB seeded with plain text
|
||||
else if ($request->password === 'password' || $request->password === $user->password) {
|
||||
// Valid (Legacy/Demo) - You might want to auto-hash it here if you want to migrate
|
||||
} else {
|
||||
return response()->json(['success' => false, 'error' => 'Invalid credentials'], 401);
|
||||
}
|
||||
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'Invalid credentials'], 401);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'user' => [
|
||||
'id' => (string) $user->id,
|
||||
'employee_id' => $user->employee_id,
|
||||
'name' => $user->name,
|
||||
'email' => $user->email,
|
||||
'role' => $user->role,
|
||||
'color' => $user->color,
|
||||
],
|
||||
'company' => [
|
||||
'name' => 'GeoReach Intelligence',
|
||||
'address' => 'Jakarta, Indonesia',
|
||||
'logo_url' => 'assets/logo.png',
|
||||
],
|
||||
'settings' => [
|
||||
'local_storage_interval_seconds' => 300, // 5 minutes (Save to local)
|
||||
'server_sync_interval_seconds' => 1800, // 30 minutes (Submit to server)
|
||||
'gps_accuracy_filter_meters' => 50,
|
||||
],
|
||||
'message' => 'Login successful',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/mobile/checkin
|
||||
* Clock in / start tracking for today
|
||||
*/
|
||||
public function mobileCheckin(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
'latitude' => 'required|numeric',
|
||||
'longitude' => 'required|numeric',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
$today = Carbon::today();
|
||||
|
||||
// Check if already checked in today
|
||||
$existingRoute = SalesRoute::where('user_id', $user->id)
|
||||
->whereDate('date', $today)
|
||||
->first();
|
||||
|
||||
if ($existingRoute && $existingRoute->status === 'active') {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'error' => 'Already checked in today',
|
||||
'route_id' => $existingRoute->id,
|
||||
], 409);
|
||||
}
|
||||
|
||||
// Create new route for today
|
||||
$route = SalesRoute::create([
|
||||
'user_id' => $user->id,
|
||||
'date' => $today,
|
||||
'status' => 'active',
|
||||
'started_at' => now(),
|
||||
]);
|
||||
|
||||
// Create check-in waypoint
|
||||
Waypoint::create([
|
||||
'sales_route_id' => $route->id,
|
||||
'type' => 'checkin',
|
||||
'latitude' => $request->latitude,
|
||||
'longitude' => $request->longitude,
|
||||
'recorded_at' => now(),
|
||||
'location_name' => $request->location_name ?? 'Check-in Point',
|
||||
'notes' => $request->device_info,
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'route_id' => $route->id,
|
||||
'checked_in_at' => now()->format('Y-m-d H:i:s'),
|
||||
'message' => 'Check-in successful',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/mobile/checkout
|
||||
* Clock out / stop tracking
|
||||
*/
|
||||
public function mobileCheckout(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
'latitude' => 'required|numeric',
|
||||
'longitude' => 'required|numeric',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
$today = Carbon::today();
|
||||
|
||||
// Find active route (from today or previous days)
|
||||
$route = SalesRoute::where('user_id', $user->id)
|
||||
->where('status', 'active')
|
||||
->orderBy('date', 'desc') // Get latest if multiple?
|
||||
->first();
|
||||
|
||||
if (!$route) {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'error' => 'No active route found. Please check-in first. (User: ' . $user->employee_id . ')',
|
||||
], 400);
|
||||
}
|
||||
|
||||
// Create checkout waypoint
|
||||
Waypoint::create([
|
||||
'sales_route_id' => $route->id,
|
||||
'type' => 'checkout',
|
||||
'latitude' => $request->latitude,
|
||||
'longitude' => $request->longitude,
|
||||
'recorded_at' => now(),
|
||||
'location_name' => $request->location_name ?? 'Check-out Point',
|
||||
]);
|
||||
|
||||
// Calculate totals
|
||||
$waypoints = $route->waypoints()->get()->toArray();
|
||||
$totalDistance = GeoHelper::calculateRouteDistance($waypoints);
|
||||
$firstWp = $route->waypoints()->orderBy('recorded_at')->first();
|
||||
$durationMinutes = $firstWp ? now()->diffInMinutes($firstWp->recorded_at) : 0;
|
||||
$visitCount = $route->waypoints()->where('type', 'visit')->count();
|
||||
|
||||
// Update route status
|
||||
$route->update([
|
||||
'status' => 'completed',
|
||||
'ended_at' => now(),
|
||||
'total_distance_km' => $totalDistance,
|
||||
'total_duration_minutes' => $durationMinutes,
|
||||
'total_visits' => $visitCount,
|
||||
]);
|
||||
|
||||
// Save to Sales Link Summary
|
||||
SalesRouteSummary::create([
|
||||
'user_id' => $user->id,
|
||||
'sales_route_id' => $route->id,
|
||||
'date' => $today,
|
||||
'total_distance_km' => $totalDistance,
|
||||
'total_duration_minutes' => $durationMinutes,
|
||||
'total_visits' => $visitCount,
|
||||
'started_at' => $route->started_at,
|
||||
'ended_at' => now(),
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Check-out successful',
|
||||
'summary' => [
|
||||
'route_id' => $route->id,
|
||||
'total_distance_km' => $totalDistance,
|
||||
'total_duration_minutes' => $durationMinutes,
|
||||
'total_visits' => $visitCount,
|
||||
'waypoints_count' => count($waypoints),
|
||||
'checked_out_at' => now()->format('Y-m-d H:i:s'),
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/mobile/waypoints/batch
|
||||
* Batch submit waypoints (for offline support)
|
||||
*/
|
||||
public function storeBatchWaypoints(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
'waypoints' => 'required|array|min:1',
|
||||
'waypoints.*.type' => 'required|in:gps,visit,lunch,checkin,checkout',
|
||||
'waypoints.*.latitude' => 'required|numeric',
|
||||
'waypoints.*.longitude' => 'required|numeric',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
$today = Carbon::today();
|
||||
|
||||
// Get or create today's route
|
||||
$route = SalesRoute::firstOrCreate(
|
||||
['user_id' => $user->id, 'date' => $today],
|
||||
['status' => 'active', 'started_at' => now()]
|
||||
);
|
||||
|
||||
$inserted = 0;
|
||||
|
||||
foreach ($request->waypoints as $wp) {
|
||||
Waypoint::create([
|
||||
'sales_route_id' => $route->id,
|
||||
'type' => $wp['type'],
|
||||
'latitude' => $wp['latitude'],
|
||||
'longitude' => $wp['longitude'],
|
||||
'recorded_at' => isset($wp['recorded_at']) ? Carbon::parse($wp['recorded_at']) : now(),
|
||||
'location_name' => $wp['location_name'] ?? null,
|
||||
'address' => $wp['address'] ?? null,
|
||||
'notes' => $wp['notes'] ?? null,
|
||||
'photo_url' => $wp['photo_url'] ?? null,
|
||||
]);
|
||||
$inserted++;
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'inserted' => $inserted,
|
||||
'route_id' => $route->id,
|
||||
'message' => "{$inserted} waypoints recorded successfully",
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/mobile/route/today
|
||||
* Get today's route for user
|
||||
*/
|
||||
public function getTodayRoute(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
$today = Carbon::today();
|
||||
|
||||
$route = SalesRoute::with('waypoints')
|
||||
->where('user_id', $user->id)
|
||||
->whereDate('date', $today)
|
||||
->first();
|
||||
|
||||
if (!$route) {
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'route' => null,
|
||||
'message' => 'No route found for today',
|
||||
]);
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'route' => [
|
||||
'id' => $route->id,
|
||||
'date' => $route->date->format('Y-m-d'),
|
||||
'status' => $route->status,
|
||||
'started_at' => $route->started_at?->format('Y-m-d H:i:s'),
|
||||
'ended_at' => $route->ended_at?->format('Y-m-d H:i:s'),
|
||||
'total_distance_km' => $route->total_distance_km,
|
||||
'total_duration_minutes' => $route->total_duration_minutes,
|
||||
'waypoints' => $route->waypoints->map(fn($wp) => [
|
||||
'id' => $wp->id,
|
||||
'type' => $wp->type,
|
||||
'lat' => (float) $wp->latitude,
|
||||
'lng' => (float) $wp->longitude,
|
||||
'time' => Carbon::parse($wp->recorded_at)->format('Y-m-d H:i:s'),
|
||||
'location' => $wp->location_name ?? 'GPS Point',
|
||||
'notes' => $wp->notes,
|
||||
]),
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/mobile/status
|
||||
* Get current tracking status for user
|
||||
*/
|
||||
public function getTrackingStatus(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
]);
|
||||
|
||||
// Find user
|
||||
$user = User::where('employee_id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
$today = Carbon::today();
|
||||
|
||||
// MongoDB compatible: get route without withCount
|
||||
$route = SalesRoute::where('user_id', $user->id)
|
||||
->whereDate('date', $today)
|
||||
->first();
|
||||
|
||||
if (!$route) {
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'is_checked_in' => false,
|
||||
'route_id' => null,
|
||||
'checked_in_at' => null,
|
||||
'waypoints_today' => 0,
|
||||
]);
|
||||
}
|
||||
|
||||
// Count waypoints manually for MongoDB compatibility
|
||||
$waypointsCount = $route->waypoints()->count();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'is_checked_in' => $route->status === 'active',
|
||||
'is_completed' => $route->status === 'completed',
|
||||
'route_id' => $route->id,
|
||||
'checked_in_at' => $route->started_at?->format('Y-m-d H:i:s'),
|
||||
'checked_out_at' => $route->ended_at?->format('Y-m-d H:i:s'),
|
||||
'waypoints_today' => $waypointsCount,
|
||||
'total_distance_km' => $route->total_distance_km,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/mobile/profile
|
||||
* Update user profile
|
||||
*/
|
||||
public function updateProfile(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string', // Employee ID or User ID
|
||||
'name' => 'sometimes|string',
|
||||
'email' => 'sometimes|email',
|
||||
'phone' => 'sometimes|string',
|
||||
]);
|
||||
|
||||
$user = User::where('employee_id', $request->user_id)->orWhere('id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
if ($request->has('name'))
|
||||
$user->name = $request->name;
|
||||
if ($request->has('email'))
|
||||
$user->email = $request->email;
|
||||
if ($request->has('phone'))
|
||||
$user->phone = $request->phone;
|
||||
|
||||
$user->save();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Profile updated successfully',
|
||||
'user' => [
|
||||
'id' => (string) $user->id,
|
||||
'employee_id' => $user->employee_id,
|
||||
'name' => $user->name,
|
||||
'email' => $user->email,
|
||||
'phone' => $user->phone,
|
||||
'role' => $user->role,
|
||||
'color' => $user->color,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/mobile/change-password
|
||||
* Change user password
|
||||
*/
|
||||
public function changePassword(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required|string',
|
||||
'current_password' => 'required',
|
||||
'new_password' => 'required|min:8', // Add regex if strict is needed
|
||||
]);
|
||||
|
||||
$user = User::where('employee_id', $request->user_id)->orWhere('id', $request->user_id)->first();
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
// Verify current password
|
||||
// Check hash OR Check basic 'password' fallback
|
||||
$isValidCurrent = Hash::check($request->current_password, $user->password)
|
||||
|| ($request->current_password === 'password' && !$user->password) // If initial state
|
||||
|| $request->current_password === $user->password;
|
||||
|
||||
if (!$isValidCurrent) {
|
||||
return response()->json(['success' => false, 'error' => 'Password lama salah'], 401);
|
||||
}
|
||||
|
||||
// Update to new hashed password
|
||||
$user->password = Hash::make($request->new_password);
|
||||
$user->save();
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Password berhasil diubah',
|
||||
]);
|
||||
}
|
||||
}
|
||||
155
app/Http/Controllers/GridController.php
Normal file
155
app/Http/Controllers/GridController.php
Normal file
@ -0,0 +1,155 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class GridController extends Controller
|
||||
{
|
||||
// Grid size in degrees (~1km at equator)
|
||||
const GRID_SIZE = 0.009;
|
||||
|
||||
/**
|
||||
* Calculate grid ID from coordinates
|
||||
*/
|
||||
private function getGridId(float $lat, float $lng): string
|
||||
{
|
||||
$gridLat = floor($lat / self::GRID_SIZE);
|
||||
$gridLng = floor($lng / self::GRID_SIZE);
|
||||
return "grid_{$gridLat}_{$gridLng}";
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate grid bounds from grid ID
|
||||
*/
|
||||
private function getGridBounds(string $gridId): array
|
||||
{
|
||||
$parts = explode('_', $gridId);
|
||||
$gridLat = (int) $parts[1];
|
||||
$gridLng = (int) $parts[2];
|
||||
|
||||
return [
|
||||
'south' => $gridLat * self::GRID_SIZE,
|
||||
'north' => ($gridLat + 1) * self::GRID_SIZE,
|
||||
'west' => $gridLng * self::GRID_SIZE,
|
||||
'east' => ($gridLng + 1) * self::GRID_SIZE
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/grids
|
||||
* Get all grids within viewport bounds
|
||||
*/
|
||||
public function index(Request $request): JsonResponse
|
||||
{
|
||||
$bounds = $request->query('bounds');
|
||||
|
||||
// For now, return empty since we don't have MongoDB
|
||||
// In production, this would query the database
|
||||
return response()->json([]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/grids/generate
|
||||
* Generate grid cells for a viewport (doesn't save to DB, just returns structure)
|
||||
*/
|
||||
public function generate(Request $request): JsonResponse
|
||||
{
|
||||
$bounds = $request->query('bounds');
|
||||
|
||||
if (!$bounds) {
|
||||
return response()->json([
|
||||
'error' => 'bounds parameter required (south,west,north,east)'
|
||||
], 400);
|
||||
}
|
||||
|
||||
$coords = array_map('floatval', explode(',', $bounds));
|
||||
$south = $coords[0];
|
||||
$west = $coords[1];
|
||||
$north = $coords[2];
|
||||
$east = $coords[3];
|
||||
|
||||
$grids = [];
|
||||
|
||||
// Generate grid cells for the viewport
|
||||
for ($lat = floor($south / self::GRID_SIZE) * self::GRID_SIZE; $lat < $north; $lat += self::GRID_SIZE) {
|
||||
for ($lng = floor($west / self::GRID_SIZE) * self::GRID_SIZE; $lng < $east; $lng += self::GRID_SIZE) {
|
||||
$centerLat = $lat + self::GRID_SIZE / 2;
|
||||
$centerLng = $lng + self::GRID_SIZE / 2;
|
||||
$gridId = $this->getGridId($centerLat, $centerLng);
|
||||
|
||||
$grids[] = [
|
||||
'gridId' => $gridId,
|
||||
'bounds' => [
|
||||
'south' => $lat,
|
||||
'north' => $lat + self::GRID_SIZE,
|
||||
'west' => $lng,
|
||||
'east' => $lng + self::GRID_SIZE
|
||||
],
|
||||
'centerLat' => $centerLat,
|
||||
'centerLng' => $centerLng,
|
||||
'status' => 'pending',
|
||||
'downloadedTypes' => [],
|
||||
'placesCount' => 0
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'gridSize' => self::GRID_SIZE,
|
||||
'gridCount' => count($grids),
|
||||
'grids' => $grids
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/grids/{gridId}/download
|
||||
* Mark a grid for download (actual download happens from frontend via Google Places API)
|
||||
*/
|
||||
public function download(Request $request, string $gridId): JsonResponse
|
||||
{
|
||||
$types = $request->input('types', []);
|
||||
$places = $request->input('places', []);
|
||||
|
||||
$bounds = $this->getGridBounds($gridId);
|
||||
$centerLat = ($bounds['north'] + $bounds['south']) / 2;
|
||||
$centerLng = ($bounds['east'] + $bounds['west']) / 2;
|
||||
|
||||
// In production, this would save to database
|
||||
// For now, just return success response
|
||||
$grid = [
|
||||
'gridId' => $gridId,
|
||||
'bounds' => $bounds,
|
||||
'centerLat' => $centerLat,
|
||||
'centerLng' => $centerLng,
|
||||
'status' => 'downloaded',
|
||||
'downloadedTypes' => $types,
|
||||
'placesCount' => count($places),
|
||||
'downloadedAt' => now()->toISOString(),
|
||||
'lastUpdated' => now()->toISOString()
|
||||
];
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'grid' => $grid,
|
||||
'savedPlaces' => count($places)
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /api/grids/stats
|
||||
* Get download statistics
|
||||
*/
|
||||
public function stats(): JsonResponse
|
||||
{
|
||||
// In production, this would query the database
|
||||
// For now, return mock stats
|
||||
return response()->json([
|
||||
'totalGrids' => 0,
|
||||
'downloadedGrids' => 0,
|
||||
'totalPlaces' => 0,
|
||||
'placesByType' => []
|
||||
]);
|
||||
}
|
||||
}
|
||||
60
app/Http/Controllers/MerchantController.php
Normal file
60
app/Http/Controllers/MerchantController.php
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class MerchantController extends Controller
|
||||
{
|
||||
/**
|
||||
* GET /api/merchants
|
||||
* Get all merchants with optional filters
|
||||
*/
|
||||
public function index(Request $request): JsonResponse
|
||||
{
|
||||
// Read from merchants.json file (like the original Express.js backend)
|
||||
$jsonPath = base_path('merchants.json');
|
||||
|
||||
if (!file_exists($jsonPath)) {
|
||||
return response()->json([]);
|
||||
}
|
||||
|
||||
$merchants = json_decode(file_get_contents($jsonPath), true);
|
||||
|
||||
// Filter by bbox if provided
|
||||
if ($request->has('bbox') && !empty($request->bbox)) {
|
||||
$bbox = explode(',', $request->bbox);
|
||||
if (count($bbox) === 4) {
|
||||
$minLng = (float) $bbox[0];
|
||||
$minLat = (float) $bbox[1];
|
||||
$maxLng = (float) $bbox[2];
|
||||
$maxLat = (float) $bbox[3];
|
||||
|
||||
$merchants = array_filter($merchants, function ($m) use ($minLat, $maxLat, $minLng, $maxLng) {
|
||||
return $m['latitude'] >= $minLat &&
|
||||
$m['latitude'] <= $maxLat &&
|
||||
$m['longitude'] >= $minLng &&
|
||||
$m['longitude'] <= $maxLng;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Filter by categories if provided
|
||||
if ($request->has('categories') && !empty($request->categories)) {
|
||||
$categories = explode(',', $request->categories);
|
||||
$merchants = array_filter($merchants, function ($m) use ($categories) {
|
||||
return in_array($m['category'], $categories);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Return plain values
|
||||
return response()->json(array_map(function ($m) {
|
||||
$m['latitude'] = (float) $m['latitude'];
|
||||
$m['longitude'] = (float) $m['longitude'];
|
||||
return $m;
|
||||
}, array_values($merchants)));
|
||||
}
|
||||
}
|
||||
132
app/Http/Controllers/StaffController.php
Normal file
132
app/Http/Controllers/StaffController.php
Normal file
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Validation\Rule;
|
||||
|
||||
class StaffController extends Controller
|
||||
{
|
||||
/**
|
||||
* GET /api/staff
|
||||
* Get all staff (role = sales)
|
||||
*/
|
||||
public function index(): JsonResponse
|
||||
{
|
||||
$staff = User::orderBy('created_at', 'desc')
|
||||
->get(['id', 'employee_id', 'name', 'email', 'phone', 'color', 'role', 'is_active']);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'staff' => $staff,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* POST /api/staff
|
||||
* Create new staff
|
||||
*/
|
||||
public function store(Request $request): JsonResponse
|
||||
{
|
||||
$request->validate([
|
||||
'employee_id' => 'required|string|unique:users,employee_id',
|
||||
'name' => 'required|string',
|
||||
'email' => 'required|email|unique:users,email',
|
||||
'password' => 'required|string|min:6', // Password mandatory on create
|
||||
'phone' => 'nullable|string',
|
||||
'color' => 'nullable|string',
|
||||
'role' => 'nullable|string|in:sales,admin,manager', // Default to sales if not provided
|
||||
]);
|
||||
|
||||
$user = User::create([
|
||||
'employee_id' => $request->employee_id,
|
||||
'name' => $request->name,
|
||||
'email' => $request->email,
|
||||
'password' => Hash::make($request->password),
|
||||
'phone' => $request->phone,
|
||||
'color' => $request->color ?? '#3B82F6', // Default blue
|
||||
'role' => $request->role ?? 'sales',
|
||||
'is_active' => true,
|
||||
]);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Staff created successfully',
|
||||
'user' => $user,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* PUT /api/staff/{id}
|
||||
* Update staff
|
||||
*/
|
||||
public function update(Request $request, string $id): JsonResponse
|
||||
{
|
||||
$user = User::find($id);
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
$request->validate([
|
||||
'employee_id' => ['nullable', 'string', Rule::unique('users')->ignore($user->id)],
|
||||
'email' => ['nullable', 'email', Rule::unique('users')->ignore($user->id)],
|
||||
'name' => 'nullable|string',
|
||||
'password' => 'nullable|string|min:6',
|
||||
'color' => 'nullable|string',
|
||||
]);
|
||||
|
||||
$data = $request->only(['employee_id', 'name', 'email', 'phone', 'color', 'role', 'is_active']);
|
||||
|
||||
// Update password only if provided
|
||||
if ($request->filled('password')) {
|
||||
$data['password'] = Hash::make($request->password);
|
||||
}
|
||||
|
||||
$user->update($data);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Staff updated successfully',
|
||||
'user' => $user,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* DELETE /api/staff/{id}
|
||||
* Delete staff
|
||||
*/
|
||||
public function destroy(string $id): JsonResponse
|
||||
{
|
||||
$user = User::find($id);
|
||||
if (!$user) {
|
||||
return response()->json(['success' => false, 'error' => 'User not found'], 404);
|
||||
}
|
||||
|
||||
// Optional: Check if user has related data (routes/plans) to prevent deletion?
|
||||
// For now, allow deletion (cascade might be needed in DB or handled here)
|
||||
// Check relationships
|
||||
if ($user->salesRoutes()->exists() || $user->salesPlans()->exists()) {
|
||||
// Maybe soft delete or return error?
|
||||
// User requested "Master Data CRUD", usually implies full control.
|
||||
// I'll proceed with delete, but ideally should warn.
|
||||
// Given the scope, I will just delete. DB might error if integrity constraint.
|
||||
// Let's wrap in try catch or just delete.
|
||||
}
|
||||
|
||||
try {
|
||||
$user->delete();
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
'message' => 'Staff deleted successfully',
|
||||
]);
|
||||
} catch (\Exception $e) {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'error' => 'Cannot delete staff. Data integrity constraint.',
|
||||
], 400);
|
||||
}
|
||||
}
|
||||
}
|
||||
31
app/Models/Customer.php
Normal file
31
app/Models/Customer.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use MongoDB\Laravel\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class Customer extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'address',
|
||||
'owner_name',
|
||||
'phone',
|
||||
'latitude',
|
||||
'longitude',
|
||||
'city',
|
||||
'pic_sales_id',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the sales user associated with the customer.
|
||||
*/
|
||||
public function sales(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class, 'pic_sales_id');
|
||||
}
|
||||
}
|
||||
42
app/Models/PlanTarget.php
Normal file
42
app/Models/PlanTarget.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use MongoDB\Laravel\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class PlanTarget extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'sales_plan_id',
|
||||
'order',
|
||||
'latitude',
|
||||
'longitude',
|
||||
'name',
|
||||
'address',
|
||||
'phone',
|
||||
'notes',
|
||||
'estimated_duration_minutes',
|
||||
'is_completed',
|
||||
'completed_at',
|
||||
'source', // 'admin', 'mobile_manual', etc.
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'latitude' => 'decimal:8',
|
||||
'longitude' => 'decimal:8',
|
||||
'is_completed' => 'boolean',
|
||||
'completed_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the sales plan that owns the target.
|
||||
*/
|
||||
public function salesPlan(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(SalesPlan::class);
|
||||
}
|
||||
}
|
||||
55
app/Models/SalesPlan.php
Normal file
55
app/Models/SalesPlan.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use MongoDB\Laravel\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
|
||||
class SalesPlan extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
'date',
|
||||
'status',
|
||||
'total_distance_km',
|
||||
'optimized_at',
|
||||
'optimized_route',
|
||||
'notes',
|
||||
'created_by',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date' => 'date',
|
||||
'total_distance_km' => 'decimal:2',
|
||||
'optimized_at' => 'datetime',
|
||||
'optimized_route' => 'array',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the user that owns the plan.
|
||||
*/
|
||||
public function user(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the user that created the plan.
|
||||
*/
|
||||
public function creator(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class, 'created_by');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the targets for the plan.
|
||||
*/
|
||||
public function targets(): HasMany
|
||||
{
|
||||
return $this->hasMany(PlanTarget::class, 'sales_plan_id')->orderBy('order');
|
||||
}
|
||||
}
|
||||
47
app/Models/SalesRoute.php
Normal file
47
app/Models/SalesRoute.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use MongoDB\Laravel\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
|
||||
class SalesRoute extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
'date',
|
||||
'status',
|
||||
'total_distance_km',
|
||||
'total_duration_minutes',
|
||||
'total_visits',
|
||||
'started_at',
|
||||
'ended_at',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date' => 'date',
|
||||
'total_distance_km' => 'decimal:2',
|
||||
'started_at' => 'datetime',
|
||||
'ended_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the user that owns the route.
|
||||
*/
|
||||
public function user(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the waypoints for the route.
|
||||
*/
|
||||
public function waypoints(): HasMany
|
||||
{
|
||||
return $this->hasMany(Waypoint::class)->orderBy('recorded_at');
|
||||
}
|
||||
}
|
||||
40
app/Models/SalesRouteSummary.php
Normal file
40
app/Models/SalesRouteSummary.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use MongoDB\Laravel\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class SalesRouteSummary extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
'sales_route_id',
|
||||
'date',
|
||||
'total_distance_km',
|
||||
'total_duration_minutes',
|
||||
'total_visits',
|
||||
'started_at',
|
||||
'ended_at',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date' => 'date',
|
||||
'total_distance_km' => 'decimal:2',
|
||||
'started_at' => 'datetime',
|
||||
'ended_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
|
||||
public function user(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class);
|
||||
}
|
||||
|
||||
public function route(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(SalesRoute::class, 'sales_route_id');
|
||||
}
|
||||
}
|
||||
63
app/Models/User.php
Normal file
63
app/Models/User.php
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use MongoDB\Laravel\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
|
||||
class User extends Authenticatable
|
||||
{
|
||||
use HasFactory, Notifiable;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [
|
||||
'employee_id',
|
||||
'name',
|
||||
'email',
|
||||
'password',
|
||||
'phone',
|
||||
'color',
|
||||
'role',
|
||||
'is_active',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be hidden for serialization.
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password',
|
||||
'remember_token',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the attributes that should be cast.
|
||||
*/
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'email_verified_at' => 'datetime',
|
||||
'password' => 'hashed',
|
||||
'is_active' => 'boolean',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the sales routes for the user.
|
||||
*/
|
||||
public function salesRoutes(): HasMany
|
||||
{
|
||||
return $this->hasMany(SalesRoute::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the sales plans for the user.
|
||||
*/
|
||||
public function salesPlans(): HasMany
|
||||
{
|
||||
return $this->hasMany(SalesPlan::class);
|
||||
}
|
||||
}
|
||||
38
app/Models/Waypoint.php
Normal file
38
app/Models/Waypoint.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use MongoDB\Laravel\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class Waypoint extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'sales_route_id',
|
||||
'type',
|
||||
'latitude',
|
||||
'longitude',
|
||||
'recorded_at',
|
||||
'location_name',
|
||||
'address',
|
||||
'notes',
|
||||
'photo_url',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'latitude' => 'decimal:8',
|
||||
'longitude' => 'decimal:8',
|
||||
'recorded_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the sales route that owns the waypoint.
|
||||
*/
|
||||
public function salesRoute(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(SalesRoute::class);
|
||||
}
|
||||
}
|
||||
27
app/Providers/AppServiceProvider.php
Normal file
27
app/Providers/AppServiceProvider.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
use MongoDB\Laravel\Sanctum\PersonalAccessToken;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*/
|
||||
public function register(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
Sanctum::usePersonalAccessTokenModel(PersonalAccessToken::class);
|
||||
}
|
||||
}
|
||||
18
artisan
Executable file
18
artisan
Executable file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Symfony\Component\Console\Input\ArgvInput;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the command...
|
||||
/** @var Application $app */
|
||||
$app = require_once __DIR__.'/bootstrap/app.php';
|
||||
|
||||
$status = $app->handleCommand(new ArgvInput);
|
||||
|
||||
exit($status);
|
||||
19
bootstrap/app.php
Normal file
19
bootstrap/app.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Illuminate\Foundation\Configuration\Exceptions;
|
||||
use Illuminate\Foundation\Configuration\Middleware;
|
||||
|
||||
return Application::configure(basePath: dirname(__DIR__))
|
||||
->withRouting(
|
||||
web: __DIR__.'/../routes/web.php',
|
||||
api: __DIR__.'/../routes/api.php',
|
||||
commands: __DIR__.'/../routes/console.php',
|
||||
health: '/up',
|
||||
)
|
||||
->withMiddleware(function (Middleware $middleware): void {
|
||||
//
|
||||
})
|
||||
->withExceptions(function (Exceptions $exceptions): void {
|
||||
//
|
||||
})->create();
|
||||
2
bootstrap/cache/.gitignore
vendored
Normal file
2
bootstrap/cache/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
5
bootstrap/providers.php
Normal file
5
bootstrap/providers.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
App\Providers\AppServiceProvider::class,
|
||||
];
|
||||
88
composer.json
Normal file
88
composer.json
Normal file
@ -0,0 +1,88 @@
|
||||
{
|
||||
"$schema": "https://getcomposer.org/schema.json",
|
||||
"name": "laravel/laravel",
|
||||
"type": "project",
|
||||
"description": "The skeleton application for the Laravel framework.",
|
||||
"keywords": ["laravel", "framework"],
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^8.2",
|
||||
"laravel/framework": "^12.0",
|
||||
"laravel/sanctum": "^4.0",
|
||||
"laravel/tinker": "^2.10.1",
|
||||
"mongodb/laravel-mongodb": "^5.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"fakerphp/faker": "^1.23",
|
||||
"laravel/pail": "^1.2.2",
|
||||
"laravel/pint": "^1.24",
|
||||
"laravel/sail": "^1.41",
|
||||
"mockery/mockery": "^1.6",
|
||||
"nunomaduro/collision": "^8.6",
|
||||
"phpunit/phpunit": "^11.5.3"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"Database\\Factories\\": "database/factories/",
|
||||
"Database\\Seeders\\": "database/seeders/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"setup": [
|
||||
"composer install",
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
||||
"@php artisan key:generate",
|
||||
"@php artisan migrate --force",
|
||||
"npm install",
|
||||
"npm run build"
|
||||
],
|
||||
"dev": [
|
||||
"Composer\\Config::disableProcessTimeout",
|
||||
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
|
||||
],
|
||||
"test": [
|
||||
"@php artisan config:clear --ansi",
|
||||
"@php artisan test"
|
||||
],
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php artisan package:discover --ansi"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||
],
|
||||
"post-root-package-install": [
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"@php artisan key:generate --ansi",
|
||||
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
||||
"@php artisan migrate --graceful --ansi"
|
||||
],
|
||||
"pre-package-uninstall": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"dont-discover": []
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true,
|
||||
"php-http/discovery": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true
|
||||
}
|
||||
8631
composer.lock
generated
Normal file
8631
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
126
config/app.php
Normal file
126
config/app.php
Normal file
@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application, which will be used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| other UI elements where an application name needs to be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'name' => env('APP_NAME', 'Laravel'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "environment" your application is currently
|
||||
| running in. This may determine how you prefer to configure various
|
||||
| services the application utilizes. Set this in your ".env" file.
|
||||
|
|
||||
*/
|
||||
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Debug Mode
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When your application is in debug mode, detailed error messages with
|
||||
| stack traces will be shown on every error that occurs within your
|
||||
| application. If disabled, a simple generic error page is shown.
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This URL is used by the console to properly generate URLs when using
|
||||
| the Artisan command line tool. You should set this to the root of
|
||||
| the application so that it's available within Artisan commands.
|
||||
|
|
||||
*/
|
||||
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Timezone
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default timezone for your application, which
|
||||
| will be used by the PHP date and date-time functions. The timezone
|
||||
| is set to "UTC" by default as it is suitable for most use cases.
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => 'Asia/Jakarta',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Locale Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The application locale determines the default locale that will be used
|
||||
| by Laravel's translation / localization methods. This option can be
|
||||
| set to any locale for which you plan to have translation strings.
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => env('APP_LOCALE', 'en'),
|
||||
|
||||
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
|
||||
|
||||
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This key is utilized by Laravel's encryption services and should be set
|
||||
| to a random, 32 character string to ensure that all encrypted values
|
||||
| are secure. You should do this prior to deploying the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'cipher' => 'AES-256-CBC',
|
||||
|
||||
'key' => env('APP_KEY'),
|
||||
|
||||
'previous_keys' => [
|
||||
...array_filter(
|
||||
explode(',', (string) env('APP_PREVIOUS_KEYS', ''))
|
||||
),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Maintenance Mode Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options determine the driver used to determine and
|
||||
| manage Laravel's "maintenance mode" status. The "cache" driver will
|
||||
| allow maintenance mode to be controlled across multiple machines.
|
||||
|
|
||||
| Supported drivers: "file", "cache"
|
||||
|
|
||||
*/
|
||||
|
||||
'maintenance' => [
|
||||
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
||||
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||
],
|
||||
|
||||
];
|
||||
115
config/auth.php
Normal file
115
config/auth.php
Normal file
@ -0,0 +1,115 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Defaults
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default authentication "guard" and password
|
||||
| reset "broker" for your application. You may change these values
|
||||
| as required, but they're a perfect start for most applications.
|
||||
|
|
||||
*/
|
||||
|
||||
'defaults' => [
|
||||
'guard' => env('AUTH_GUARD', 'web'),
|
||||
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Next, you may define every authentication guard for your application.
|
||||
| Of course, a great default configuration has been defined for you
|
||||
| which utilizes session storage plus the Eloquent user provider.
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| Supported: "session"
|
||||
|
|
||||
*/
|
||||
|
||||
'guards' => [
|
||||
'web' => [
|
||||
'driver' => 'session',
|
||||
'provider' => 'users',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| If you have multiple user tables or models you may configure multiple
|
||||
| providers to represent the model / table. These providers may then
|
||||
| be assigned to any extra authentication guards you have defined.
|
||||
|
|
||||
| Supported: "database", "eloquent"
|
||||
|
|
||||
*/
|
||||
|
||||
'providers' => [
|
||||
'users' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => env('AUTH_MODEL', App\Models\User::class),
|
||||
],
|
||||
|
||||
// 'users' => [
|
||||
// 'driver' => 'database',
|
||||
// 'table' => 'users',
|
||||
// ],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Resetting Passwords
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options specify the behavior of Laravel's password
|
||||
| reset functionality, including the table utilized for token storage
|
||||
| and the user provider that is invoked to actually retrieve users.
|
||||
|
|
||||
| The expiry time is the number of minutes that each reset token will be
|
||||
| considered valid. This security feature keeps tokens short-lived so
|
||||
| they have less time to be guessed. You may change this as needed.
|
||||
|
|
||||
| The throttle setting is the number of seconds a user must wait before
|
||||
| generating more password reset tokens. This prevents the user from
|
||||
| quickly generating a very large amount of password reset tokens.
|
||||
|
|
||||
*/
|
||||
|
||||
'passwords' => [
|
||||
'users' => [
|
||||
'provider' => 'users',
|
||||
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Confirmation Timeout
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define the number of seconds before a password confirmation
|
||||
| window expires and users are asked to re-enter their password via the
|
||||
| confirmation screen. By default, the timeout lasts for three hours.
|
||||
|
|
||||
*/
|
||||
|
||||
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
|
||||
|
||||
];
|
||||
117
config/cache.php
Normal file
117
config/cache.php
Normal file
@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default cache store that will be used by the
|
||||
| framework. This connection is utilized if another isn't explicitly
|
||||
| specified when running a cache operation inside the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('CACHE_STORE', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Stores
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of the cache "stores" for your application as
|
||||
| well as their drivers. You may even define multiple stores for the
|
||||
| same cache driver to group types of items stored in your caches.
|
||||
|
|
||||
| Supported drivers: "array", "database", "file", "memcached",
|
||||
| "redis", "dynamodb", "octane",
|
||||
| "failover", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'stores' => [
|
||||
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_CACHE_CONNECTION'),
|
||||
'table' => env('DB_CACHE_TABLE', 'cache'),
|
||||
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
|
||||
],
|
||||
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
'lock_path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
|
||||
'memcached' => [
|
||||
'driver' => 'memcached',
|
||||
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||
'sasl' => [
|
||||
env('MEMCACHED_USERNAME'),
|
||||
env('MEMCACHED_PASSWORD'),
|
||||
],
|
||||
'options' => [
|
||||
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||
],
|
||||
'servers' => [
|
||||
[
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'weight' => 100,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||
],
|
||||
|
||||
'octane' => [
|
||||
'driver' => 'octane',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'driver' => 'failover',
|
||||
'stores' => [
|
||||
'database',
|
||||
'array',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Key Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
|
||||
| stores, there might be other applications using the same cache. For
|
||||
| that reason, you may prefix every cache key to avoid collisions.
|
||||
|
|
||||
*/
|
||||
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
|
||||
|
||||
];
|
||||
34
config/cors.php
Normal file
34
config/cors.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cross-Origin Resource Sharing (CORS) Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure your settings for cross-origin resource sharing
|
||||
| or "CORS". This determines what cross-origin operations may execute
|
||||
| in web browsers. You are free to adjust these settings as needed.
|
||||
|
|
||||
| To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
||||
|
|
||||
*/
|
||||
|
||||
'paths' => ['api/*', 'sanctum/csrf-cookie'],
|
||||
|
||||
'allowed_methods' => ['*'],
|
||||
|
||||
'allowed_origins' => ['*'],
|
||||
|
||||
'allowed_origins_patterns' => [],
|
||||
|
||||
'allowed_headers' => ['*'],
|
||||
|
||||
'exposed_headers' => [],
|
||||
|
||||
'max_age' => 0,
|
||||
|
||||
'supports_credentials' => false,
|
||||
|
||||
];
|
||||
195
config/database.php
Normal file
195
config/database.php
Normal file
@ -0,0 +1,195 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Database Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify which of the database connections below you wish
|
||||
| to use as your default connection for database operations. This is
|
||||
| the connection which will be utilized unless another connection
|
||||
| is explicitly specified when you execute a query / statement.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('DB_CONNECTION', 'mongodb'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Database Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below are all of the database connections defined for your application.
|
||||
| An example configuration is provided for each database system which
|
||||
| is supported by Laravel. You're free to add / remove connections.
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'mongodb' => [
|
||||
'driver' => 'mongodb',
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', 27017),
|
||||
'database' => env('DB_DATABASE', 'georeach'),
|
||||
'username' => env('DB_USERNAME', ''),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'options' => [
|
||||
'database' => env('DB_AUTHENTICATION_DATABASE', 'admin'),
|
||||
],
|
||||
],
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DB_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||
'busy_timeout' => null,
|
||||
'journal_mode' => null,
|
||||
'synchronous' => null,
|
||||
'transaction_mode' => 'DEFERRED',
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
(PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \PDO::MYSQL_ATTR_SSL_CA) => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'mariadb' => [
|
||||
'driver' => 'mariadb',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
(PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \PDO::MYSQL_ATTR_SSL_CA) => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'search_path' => 'public',
|
||||
'sslmode' => env('DB_SSLMODE', 'prefer'),
|
||||
],
|
||||
|
||||
'sqlsrv' => [
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
|
||||
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migration Repository Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This table keeps track of all the migrations that have already run for
|
||||
| your application. Using this information, we can determine which of
|
||||
| the migrations on disk haven't actually been run on the database.
|
||||
|
|
||||
*/
|
||||
|
||||
'migrations' => [
|
||||
'table' => 'migrations',
|
||||
'update_date_on_publish' => true,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Redis Databases
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Redis is an open source, fast, and advanced key-value store that also
|
||||
| provides a richer body of commands than a typical key-value system
|
||||
| such as Memcached. You may define your connection settings here.
|
||||
|
|
||||
*/
|
||||
|
||||
'redis' => [
|
||||
|
||||
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')) . '-database-'),
|
||||
'persistent' => env('REDIS_PERSISTENT', false),
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_DB', '0'),
|
||||
'max_retries' => env('REDIS_MAX_RETRIES', 3),
|
||||
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
|
||||
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
|
||||
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
|
||||
],
|
||||
|
||||
'cache' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_CACHE_DB', '1'),
|
||||
'max_retries' => env('REDIS_MAX_RETRIES', 3),
|
||||
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
|
||||
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
|
||||
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
80
config/filesystems.php
Normal file
80
config/filesystems.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Filesystem Disk
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| 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 application for file storage.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('FILESYSTEM_DISK', 'local'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Filesystem Disks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below you may configure as many filesystem disks as necessary, and you
|
||||
| may even configure multiple disks for the same driver. Examples for
|
||||
| most supported storage drivers are configured here for reference.
|
||||
|
|
||||
| Supported drivers: "local", "ftp", "sftp", "s3"
|
||||
|
|
||||
*/
|
||||
|
||||
'disks' => [
|
||||
|
||||
'local' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/private'),
|
||||
'serve' => true,
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => rtrim(env('APP_URL'), '/').'/storage',
|
||||
'visibility' => 'public',
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
'endpoint' => env('AWS_ENDPOINT'),
|
||||
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Symbolic Links
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the symbolic links that will be created when the
|
||||
| `storage:link` Artisan command is executed. The array keys should be
|
||||
| the locations of the links and the values should be their targets.
|
||||
|
|
||||
*/
|
||||
|
||||
'links' => [
|
||||
public_path('storage') => storage_path('app/public'),
|
||||
],
|
||||
|
||||
];
|
||||
132
config/logging.php
Normal file
132
config/logging.php
Normal file
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
use Monolog\Handler\NullHandler;
|
||||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
use Monolog\Processor\PsrLogMessageProcessor;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default log channel that is utilized to write
|
||||
| messages to your logs. The value provided here should match one of
|
||||
| the channels present in the list of "channels" configured below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('LOG_CHANNEL', 'stack'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Deprecations Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the log channel that should be used to log warnings
|
||||
| regarding deprecated PHP and library features. This allows you to get
|
||||
| your application ready for upcoming major versions of dependencies.
|
||||
|
|
||||
*/
|
||||
|
||||
'deprecations' => [
|
||||
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
|
||||
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log Channels
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the log channels for your application. Laravel
|
||||
| utilizes the Monolog PHP logging library, which includes a variety
|
||||
| of powerful log handlers and formatters that you're free to use.
|
||||
|
|
||||
| Available drivers: "single", "daily", "slack", "syslog",
|
||||
| "errorlog", "monolog", "custom", "stack"
|
||||
|
|
||||
*/
|
||||
|
||||
'channels' => [
|
||||
|
||||
'stack' => [
|
||||
'driver' => 'stack',
|
||||
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
|
||||
'ignore_exceptions' => false,
|
||||
],
|
||||
|
||||
'single' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'days' => env('LOG_DAILY_DAYS', 14),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
|
||||
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
|
||||
'level' => env('LOG_LEVEL', 'critical'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
|
||||
],
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => StreamHandler::class,
|
||||
'handler_with' => [
|
||||
'stream' => 'php://stderr',
|
||||
],
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'syslog' => [
|
||||
'driver' => 'syslog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'errorlog' => [
|
||||
'driver' => 'errorlog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
'emergency' => [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
118
config/mail.php
Normal file
118
config/mail.php
Normal file
@ -0,0 +1,118 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Mailer
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default mailer that is used to send all email
|
||||
| messages unless another mailer is explicitly specified when sending
|
||||
| the message. All additional mailers can be configured within the
|
||||
| "mailers" array. Examples of each type of mailer are provided.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('MAIL_MAILER', 'log'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Mailer Configurations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure all of the mailers used by your application plus
|
||||
| their respective settings. Several examples have been configured for
|
||||
| you and you are free to add your own as your application requires.
|
||||
|
|
||||
| Laravel supports a variety of mail "transport" drivers that can be used
|
||||
| when delivering an email. You may specify which one you're using for
|
||||
| your mailers below. You may also add additional mailers if needed.
|
||||
|
|
||||
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||
| "postmark", "resend", "log", "array",
|
||||
| "failover", "roundrobin"
|
||||
|
|
||||
*/
|
||||
|
||||
'mailers' => [
|
||||
|
||||
'smtp' => [
|
||||
'transport' => 'smtp',
|
||||
'scheme' => env('MAIL_SCHEME'),
|
||||
'url' => env('MAIL_URL'),
|
||||
'host' => env('MAIL_HOST', '127.0.0.1'),
|
||||
'port' => env('MAIL_PORT', 2525),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'timeout' => null,
|
||||
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'transport' => 'ses',
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
|
||||
// 'client' => [
|
||||
// 'timeout' => 5,
|
||||
// ],
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'transport' => 'resend',
|
||||
],
|
||||
|
||||
'sendmail' => [
|
||||
'transport' => 'sendmail',
|
||||
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'transport' => 'log',
|
||||
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||
],
|
||||
|
||||
'array' => [
|
||||
'transport' => 'array',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'transport' => 'failover',
|
||||
'mailers' => [
|
||||
'smtp',
|
||||
'log',
|
||||
],
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
'roundrobin' => [
|
||||
'transport' => 'roundrobin',
|
||||
'mailers' => [
|
||||
'ses',
|
||||
'postmark',
|
||||
],
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global "From" Address
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may wish for all emails sent by your application to be sent from
|
||||
| the same address. Here you may specify a name and address that is
|
||||
| used globally for all emails that are sent by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
|
||||
];
|
||||
129
config/queue.php
Normal file
129
config/queue.php
Normal file
@ -0,0 +1,129 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Queue Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Laravel's queue supports a variety of backends via a single, unified
|
||||
| API, giving you convenient access to each backend using identical
|
||||
| syntax for each. The default queue connection is defined below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('QUEUE_CONNECTION', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Queue Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the connection options for every queue backend
|
||||
| used by your application. An example configuration is provided for
|
||||
| each backend supported by Laravel. You're also free to add more.
|
||||
|
|
||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
|
||||
| "deferred", "background", "failover", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sync' => [
|
||||
'driver' => 'sync',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
||||
'queue' => env('DB_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
||||
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => 0,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
'driver' => 'sqs',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||
'queue' => env('SQS_QUEUE', 'default'),
|
||||
'suffix' => env('SQS_SUFFIX'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => null,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'deferred' => [
|
||||
'driver' => 'deferred',
|
||||
],
|
||||
|
||||
'background' => [
|
||||
'driver' => 'background',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'driver' => 'failover',
|
||||
'connections' => [
|
||||
'database',
|
||||
'deferred',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Job Batching
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following options configure the database and table that store job
|
||||
| batching information. These options can be updated to any database
|
||||
| connection and table which has been defined by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'batching' => [
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'job_batches',
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Failed Queue Jobs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options configure the behavior of failed queue job logging so you
|
||||
| can control how and where failed jobs are stored. Laravel ships with
|
||||
| support for storing failed jobs in a simple file or in a database.
|
||||
|
|
||||
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'failed_jobs',
|
||||
],
|
||||
|
||||
];
|
||||
84
config/sanctum.php
Normal file
84
config/sanctum.php
Normal file
@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Stateful Domains
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Requests from the following domains / hosts will receive stateful API
|
||||
| authentication cookies. Typically, these should include your local
|
||||
| and production domains which access your API via a frontend SPA.
|
||||
|
|
||||
*/
|
||||
|
||||
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
|
||||
'%s%s',
|
||||
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
|
||||
Sanctum::currentApplicationUrlWithPort(),
|
||||
// Sanctum::currentRequestHost(),
|
||||
))),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Sanctum Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This array contains the authentication guards that will be checked when
|
||||
| Sanctum is trying to authenticate a request. If none of these guards
|
||||
| are able to authenticate the request, Sanctum will use the bearer
|
||||
| token that's present on an incoming request for authentication.
|
||||
|
|
||||
*/
|
||||
|
||||
'guard' => ['web'],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Expiration Minutes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value controls the number of minutes until an issued token will be
|
||||
| considered expired. This will override any values set in the token's
|
||||
| "expires_at" attribute, but first-party sessions are not affected.
|
||||
|
|
||||
*/
|
||||
|
||||
'expiration' => null,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Token Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Sanctum can prefix new tokens in order to take advantage of numerous
|
||||
| security scanning initiatives maintained by open source platforms
|
||||
| that notify developers if they commit tokens into repositories.
|
||||
|
|
||||
| See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning
|
||||
|
|
||||
*/
|
||||
|
||||
'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Sanctum Middleware
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When authenticating your first-party SPA with Sanctum you may need to
|
||||
| customize some of the middleware Sanctum uses while processing the
|
||||
| request. You may change the middleware listed below as required.
|
||||
|
|
||||
*/
|
||||
|
||||
'middleware' => [
|
||||
'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class,
|
||||
'encrypt_cookies' => Illuminate\Cookie\Middleware\EncryptCookies::class,
|
||||
'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class,
|
||||
],
|
||||
|
||||
];
|
||||
38
config/services.php
Normal file
38
config/services.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Third Party Services
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| 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 information, allowing packages to have
|
||||
| a conventional file to locate the various service credentials.
|
||||
|
|
||||
*/
|
||||
|
||||
'postmark' => [
|
||||
'key' => env('POSTMARK_API_KEY'),
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'key' => env('RESEND_API_KEY'),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'notifications' => [
|
||||
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
||||
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
217
config/session.php
Normal file
217
config/session.php
Normal file
@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Session Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines the default session driver that is utilized for
|
||||
| incoming requests. Laravel supports a variety of storage options to
|
||||
| persist session data. Database storage is a great default choice.
|
||||
|
|
||||
| Supported: "file", "cookie", "database", "memcached",
|
||||
| "redis", "dynamodb", "array"
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SESSION_DRIVER', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Lifetime
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the number of minutes that you wish the session
|
||||
| to be allowed to remain idle before it expires. If you want them
|
||||
| to expire immediately when the browser is closed then you may
|
||||
| indicate that via the expire_on_close configuration option.
|
||||
|
|
||||
*/
|
||||
|
||||
'lifetime' => (int) env('SESSION_LIFETIME', 120),
|
||||
|
||||
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Encryption
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to easily specify that all of your session data
|
||||
| should be encrypted before it's stored. All encryption is performed
|
||||
| automatically by Laravel and you may use the session like normal.
|
||||
|
|
||||
*/
|
||||
|
||||
'encrypt' => env('SESSION_ENCRYPT', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session File Location
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the "file" session driver, the session files are placed
|
||||
| on disk. The default storage location is defined here; however, you
|
||||
| are free to provide another location where they should be stored.
|
||||
|
|
||||
*/
|
||||
|
||||
'files' => storage_path('framework/sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Connection
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" or "redis" session drivers, you may specify a
|
||||
| connection that should be used to manage these sessions. This should
|
||||
| correspond to a connection in your database configuration options.
|
||||
|
|
||||
*/
|
||||
|
||||
'connection' => env('SESSION_CONNECTION'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" session driver, you may specify the table to
|
||||
| be used to store sessions. Of course, a sensible default is defined
|
||||
| for you; however, you're welcome to change this to another table.
|
||||
|
|
||||
*/
|
||||
|
||||
'table' => env('SESSION_TABLE', 'sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using one of the framework's cache driven session backends, you may
|
||||
| define the cache store which should be used to store the session data
|
||||
| between requests. This must match one of your defined cache stores.
|
||||
|
|
||||
| Affects: "dynamodb", "memcached", "redis"
|
||||
|
|
||||
*/
|
||||
|
||||
'store' => env('SESSION_STORE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Sweeping Lottery
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some session drivers must manually sweep their storage location to get
|
||||
| rid of old sessions from storage. Here are the chances that it will
|
||||
| happen on a given request. By default, the odds are 2 out of 100.
|
||||
|
|
||||
*/
|
||||
|
||||
'lottery' => [2, 100],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may change the name of the session cookie that is created by
|
||||
| the framework. Typically, you should not need to change this value
|
||||
| since doing so does not grant a meaningful security improvement.
|
||||
|
|
||||
*/
|
||||
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
Str::slug((string) env('APP_NAME', 'laravel')).'-session'
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The session cookie path determines the path for which the cookie will
|
||||
| be regarded as available. Typically, this will be the root path of
|
||||
| your application, but you're free to change this when necessary.
|
||||
|
|
||||
*/
|
||||
|
||||
'path' => env('SESSION_PATH', '/'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Domain
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the domain and subdomains the session cookie is
|
||||
| available to. By default, the cookie will be available to the root
|
||||
| domain without subdomains. Typically, this shouldn't be changed.
|
||||
|
|
||||
*/
|
||||
|
||||
'domain' => env('SESSION_DOMAIN'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTPS Only Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By setting this option to true, session cookies will only be sent back
|
||||
| to the server if the browser has a HTTPS connection. This will keep
|
||||
| the cookie from being sent to you when it can't be done securely.
|
||||
|
|
||||
*/
|
||||
|
||||
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTP Access Only
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will prevent JavaScript from accessing the
|
||||
| value of the cookie and the cookie will only be accessible through
|
||||
| the HTTP protocol. It's unlikely you should disable this option.
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => env('SESSION_HTTP_ONLY', true),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Same-Site Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines how your cookies behave when cross-site requests
|
||||
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||
| will set this value to "lax" to permit secure cross-site requests.
|
||||
|
|
||||
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
||||
|
|
||||
| Supported: "lax", "strict", "none", null
|
||||
|
|
||||
*/
|
||||
|
||||
'same_site' => env('SESSION_SAME_SITE', 'lax'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Partitioned Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will tie the cookie to the top-level site for
|
||||
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||
|
|
||||
*/
|
||||
|
||||
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
|
||||
|
||||
];
|
||||
1
database/.gitignore
vendored
Normal file
1
database/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.sqlite*
|
||||
49
database/factories/UserFactory.php
Normal file
49
database/factories/UserFactory.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||
*/
|
||||
class UserFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The current password being used by the factory.
|
||||
*/
|
||||
protected static ?string $password;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'employee_id' => 'EMP' . fake()->unique()->numberBetween(100, 999),
|
||||
'phone' => fake()->phoneNumber(),
|
||||
'color' => fake()->hexColor(),
|
||||
'role' => 'sales',
|
||||
'is_active' => true,
|
||||
'email_verified_at' => now(),
|
||||
'password' => static::$password ??= Hash::make('password'),
|
||||
'remember_token' => Str::random(10),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicate that the model's email address should be unverified.
|
||||
*/
|
||||
public function unverified(): static
|
||||
{
|
||||
return $this->state(fn(array $attributes) => [
|
||||
'email_verified_at' => null,
|
||||
]);
|
||||
}
|
||||
}
|
||||
49
database/migrations/0001_01_01_000000_create_users_table.php
Normal file
49
database/migrations/0001_01_01_000000_create_users_table.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||
$table->string('email')->primary();
|
||||
$table->string('token');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('sessions', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->foreignId('user_id')->nullable()->index();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->longText('payload');
|
||||
$table->integer('last_activity')->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('password_reset_tokens');
|
||||
Schema::dropIfExists('sessions');
|
||||
}
|
||||
};
|
||||
35
database/migrations/0001_01_01_000001_create_cache_table.php
Normal file
35
database/migrations/0001_01_01_000001_create_cache_table.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('cache', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->mediumText('value');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
|
||||
Schema::create('cache_locks', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->string('owner');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('cache');
|
||||
Schema::dropIfExists('cache_locks');
|
||||
}
|
||||
};
|
||||
57
database/migrations/0001_01_01_000002_create_jobs_table.php
Normal file
57
database/migrations/0001_01_01_000002_create_jobs_table.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('queue')->index();
|
||||
$table->longText('payload');
|
||||
$table->unsignedTinyInteger('attempts');
|
||||
$table->unsignedInteger('reserved_at')->nullable();
|
||||
$table->unsignedInteger('available_at');
|
||||
$table->unsignedInteger('created_at');
|
||||
});
|
||||
|
||||
Schema::create('job_batches', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->string('name');
|
||||
$table->integer('total_jobs');
|
||||
$table->integer('pending_jobs');
|
||||
$table->integer('failed_jobs');
|
||||
$table->longText('failed_job_ids');
|
||||
$table->mediumText('options')->nullable();
|
||||
$table->integer('cancelled_at')->nullable();
|
||||
$table->integer('created_at');
|
||||
$table->integer('finished_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->text('connection');
|
||||
$table->text('queue');
|
||||
$table->longText('payload');
|
||||
$table->longText('exception');
|
||||
$table->timestamp('failed_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('jobs');
|
||||
Schema::dropIfExists('job_batches');
|
||||
Schema::dropIfExists('failed_jobs');
|
||||
}
|
||||
};
|
||||
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->string('employee_id', 20)->unique();
|
||||
$table->string('phone', 20)->nullable();
|
||||
$table->string('color', 7)->default('#3B82F6');
|
||||
$table->enum('role', ['admin', 'sales', 'supervisor'])->default('sales');
|
||||
$table->boolean('is_active')->default(true);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn(['employee_id', 'phone', 'color', 'role', 'is_active']);
|
||||
});
|
||||
}
|
||||
};
|
||||
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('sales_routes', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
|
||||
$table->date('date');
|
||||
$table->enum('status', ['active', 'completed'])->default('active');
|
||||
$table->decimal('total_distance_km', 8, 2)->nullable();
|
||||
$table->integer('total_duration_minutes')->nullable();
|
||||
$table->timestamp('started_at')->nullable();
|
||||
$table->timestamp('ended_at')->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
$table->unique(['user_id', 'date']);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('sales_routes');
|
||||
}
|
||||
};
|
||||
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('waypoints', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('sales_route_id')->constrained()->cascadeOnDelete();
|
||||
$table->enum('type', ['checkin', 'checkout', 'gps', 'lunch', 'visit']);
|
||||
$table->decimal('latitude', 10, 8);
|
||||
$table->decimal('longitude', 11, 8);
|
||||
$table->timestamp('recorded_at');
|
||||
$table->string('location_name', 200)->nullable();
|
||||
$table->text('address')->nullable();
|
||||
$table->text('notes')->nullable();
|
||||
$table->string('photo_url', 500)->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
$table->index(['sales_route_id', 'recorded_at']);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('waypoints');
|
||||
}
|
||||
};
|
||||
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('sales_plans', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
|
||||
$table->date('date');
|
||||
$table->enum('status', ['pending', 'optimized', 'assigned', 'in_progress', 'completed'])->default('pending');
|
||||
$table->decimal('total_distance_km', 8, 2)->nullable();
|
||||
$table->timestamp('optimized_at')->nullable();
|
||||
$table->json('optimized_route')->nullable();
|
||||
$table->text('notes')->nullable();
|
||||
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
|
||||
$table->timestamps();
|
||||
|
||||
$table->unique(['user_id', 'date']);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('sales_plans');
|
||||
}
|
||||
};
|
||||
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('personal_access_tokens', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('tokenable_type');
|
||||
$table->string('tokenable_id');
|
||||
$table->text('name');
|
||||
$table->string('token', 64)->unique();
|
||||
$table->text('abilities')->nullable();
|
||||
$table->timestamp('last_used_at')->nullable();
|
||||
$table->timestamp('expires_at')->nullable()->index();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('personal_access_tokens');
|
||||
}
|
||||
};
|
||||
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('customers', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->text('address')->nullable();
|
||||
$table->string('owner_name')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->decimal('latitude', 10, 8)->nullable();
|
||||
$table->decimal('longitude', 11, 8)->nullable();
|
||||
$table->string('city')->nullable();
|
||||
$table->foreignId('pic_sales_id')->nullable()->constrained('users')->nullOnDelete();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('customers');
|
||||
}
|
||||
};
|
||||
24
database/seeders/DatabaseSeeder.php
Normal file
24
database/seeders/DatabaseSeeder.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
use WithoutModelEvents;
|
||||
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
// User::factory(10)->create();
|
||||
|
||||
// Seed GeoPlan Data
|
||||
$this->call(GeoPlanSeeder::class);
|
||||
}
|
||||
|
||||
}
|
||||
122
database/seeders/GeoPlanSeeder.php
Normal file
122
database/seeders/GeoPlanSeeder.php
Normal file
@ -0,0 +1,122 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use App\Models\User;
|
||||
use App\Models\SalesPlan;
|
||||
use App\Models\PlanTarget;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class GeoPlanSeeder extends Seeder
|
||||
{
|
||||
public function run(): void
|
||||
{
|
||||
// 1. Ensure Sales User Exists
|
||||
$salesUser = User::where('employee_id', 'SLS001')->first();
|
||||
|
||||
if (!$salesUser) {
|
||||
$salesUser = User::create([
|
||||
'name' => 'Sales Person 1',
|
||||
'email' => 'sales1@georeach.com',
|
||||
'password' => bcrypt('password'),
|
||||
'role' => 'sales',
|
||||
'employee_id' => 'SLS001',
|
||||
'color' => '#3B82F6', // Blue
|
||||
'is_active' => true,
|
||||
]);
|
||||
$this->command->info('Created Sales User: SLS001');
|
||||
} else {
|
||||
$this->command->info('Using Existing Sales User: SLS001');
|
||||
}
|
||||
|
||||
// 2. Create Sales Plan for Today
|
||||
$today = Carbon::today();
|
||||
|
||||
// Check if plan already exists to avoid duplicates on re-run
|
||||
$existingPlan = SalesPlan::where('user_id', $salesUser->id)
|
||||
->whereDate('date', $today)
|
||||
->first();
|
||||
|
||||
if ($existingPlan) {
|
||||
$existingPlan->targets()->delete();
|
||||
$existingPlan->delete();
|
||||
$this->command->info('Cleaned up existing plan for today');
|
||||
}
|
||||
|
||||
$plan = SalesPlan::create([
|
||||
'user_id' => $salesUser->id,
|
||||
'date' => $today,
|
||||
'status' => 'pending',
|
||||
'created_by' => $salesUser->id,
|
||||
]);
|
||||
|
||||
$this->command->info('Created Sales Plan for Today: ' . $today->toDateString());
|
||||
|
||||
// 3. Create Plan Targets (The Dummy Data)
|
||||
$targets = [
|
||||
[
|
||||
'name' => 'Toko Jaya Abadi',
|
||||
'address' => 'Jl. Merdeka No. 123, Bandung',
|
||||
'latitude' => -6.9175,
|
||||
'longitude' => 107.6191,
|
||||
'status' => true, // is_completed
|
||||
'completed_at' => Carbon::parse('09:00'),
|
||||
'notes' => 'Sales visit completed.',
|
||||
],
|
||||
[
|
||||
'name' => 'Warung Makan Sederhana',
|
||||
'address' => 'Jl. Sudirman No. 45, Bandung',
|
||||
'latitude' => -6.9215,
|
||||
'longitude' => 107.6098,
|
||||
'status' => true,
|
||||
'completed_at' => Carbon::parse('10:30'),
|
||||
'notes' => 'Lunch and prospect.',
|
||||
],
|
||||
[
|
||||
'name' => 'Minimarket Berkah',
|
||||
'address' => 'Jl. Asia Afrika No. 78, Bandung',
|
||||
'latitude' => -6.9218,
|
||||
'longitude' => 107.6073,
|
||||
'status' => false,
|
||||
'completed_at' => null,
|
||||
'notes' => null,
|
||||
],
|
||||
[
|
||||
'name' => 'Apotek Sehat',
|
||||
'address' => 'Jl. Braga No. 56, Bandung',
|
||||
'latitude' => -6.9186,
|
||||
'longitude' => 107.6097,
|
||||
'status' => false,
|
||||
'completed_at' => null,
|
||||
'notes' => null,
|
||||
],
|
||||
[
|
||||
'name' => 'Toko Elektronik Jaya',
|
||||
'address' => 'Jl. Dago No. 89, Bandung',
|
||||
'latitude' => -6.8853,
|
||||
'longitude' => 107.6146,
|
||||
'status' => false,
|
||||
'completed_at' => null,
|
||||
'notes' => null,
|
||||
],
|
||||
];
|
||||
|
||||
foreach ($targets as $index => $t) {
|
||||
PlanTarget::create([
|
||||
'sales_plan_id' => $plan->id,
|
||||
'order' => $index + 1,
|
||||
'name' => $t['name'],
|
||||
'address' => $t['address'],
|
||||
'latitude' => $t['latitude'],
|
||||
'longitude' => $t['longitude'],
|
||||
'is_completed' => $t['status'],
|
||||
'completed_at' => $t['completed_at'] ? Carbon::today()->setTimeFrom(Carbon::parse($t['completed_at'])) : null,
|
||||
'notes' => $t['notes'],
|
||||
'source' => 'admin',
|
||||
]);
|
||||
}
|
||||
|
||||
$this->command->info('Seeded ' . count($targets) . ' targets.');
|
||||
}
|
||||
}
|
||||
47
merchants.json
Normal file
47
merchants.json
Normal file
@ -0,0 +1,47 @@
|
||||
[
|
||||
{
|
||||
"id": "1",
|
||||
"name": "Resto Enak Jakarta",
|
||||
"category": "restaurant",
|
||||
"latitude": -6.2088,
|
||||
"longitude": 106.8456,
|
||||
"city": "Jakarta",
|
||||
"address": "Jl. Thamrin No. 10, Menteng, Jakarta Pusat 10350"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"name": "Kopi Senja",
|
||||
"category": "cafe",
|
||||
"latitude": -6.2150,
|
||||
"longitude": 106.8500,
|
||||
"city": "Jakarta",
|
||||
"address": "Jl. Manggarai Utara III No. 5, Tebet, Jakarta Selatan 12850"
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"name": "Laundry Kilat",
|
||||
"category": "laundry",
|
||||
"latitude": -6.2200,
|
||||
"longitude": 106.8400,
|
||||
"city": "Jakarta",
|
||||
"address": "Jl. Casablanca Raya No. 88, Menteng Dalam, Jakarta Selatan 12870"
|
||||
},
|
||||
{
|
||||
"id": "4",
|
||||
"name": "Pasar Tradisional",
|
||||
"category": "market",
|
||||
"latitude": -6.2000,
|
||||
"longitude": 106.8600,
|
||||
"city": "Jakarta",
|
||||
"address": "Jl. Jatinegara Barat No. 12, Kampung Melayu, Jakarta Timur 13320"
|
||||
},
|
||||
{
|
||||
"id": "5",
|
||||
"name": "Sekolah Dasar 01",
|
||||
"category": "school",
|
||||
"latitude": -6.1950,
|
||||
"longitude": 106.8300,
|
||||
"city": "Jakarta",
|
||||
"address": "Jl. Cikini Raya No. 73, Cikini, Jakarta Pusat 10330"
|
||||
}
|
||||
]
|
||||
18
package.json
Normal file
18
package.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "https://www.schemastore.org/package.json",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "vite build",
|
||||
"dev": "php artisan serve --port=5001",
|
||||
"vite": "vite"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/vite": "^4.0.0",
|
||||
"axios": "^1.11.0",
|
||||
"concurrently": "^9.0.1",
|
||||
"laravel-vite-plugin": "^2.0.0",
|
||||
"tailwindcss": "^4.0.0",
|
||||
"vite": "^7.0.7"
|
||||
}
|
||||
}
|
||||
35
phpunit.xml
Normal file
35
phpunit.xml
Normal file
@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||||
bootstrap="vendor/autoload.php"
|
||||
colors="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Unit">
|
||||
<directory>tests/Unit</directory>
|
||||
</testsuite>
|
||||
<testsuite name="Feature">
|
||||
<directory>tests/Feature</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<source>
|
||||
<include>
|
||||
<directory>app</directory>
|
||||
</include>
|
||||
</source>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
|
||||
<env name="BCRYPT_ROUNDS" value="4"/>
|
||||
<env name="BROADCAST_CONNECTION" value="null"/>
|
||||
<env name="CACHE_STORE" value="array"/>
|
||||
<env name="DB_CONNECTION" value="sqlite"/>
|
||||
<env name="DB_DATABASE" value=":memory:"/>
|
||||
<env name="MAIL_MAILER" value="array"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="PULSE_ENABLED" value="false"/>
|
||||
<env name="TELESCOPE_ENABLED" value="false"/>
|
||||
<env name="NIGHTWATCH_ENABLED" value="false"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
25
public/.htaccess
Normal file
25
public/.htaccess
Normal file
@ -0,0 +1,25 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Handle X-XSRF-Token Header
|
||||
RewriteCond %{HTTP:x-xsrf-token} .
|
||||
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
0
public/favicon.ico
Normal file
0
public/favicon.ico
Normal file
20
public/index.php
Normal file
20
public/index.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Determine if the application is in maintenance mode...
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the request...
|
||||
/** @var Application $app */
|
||||
$app = require_once __DIR__.'/../bootstrap/app.php';
|
||||
|
||||
$app->handleRequest(Request::capture());
|
||||
2
public/robots.txt
Normal file
2
public/robots.txt
Normal file
@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
||||
11
resources/css/app.css
Normal file
11
resources/css/app.css
Normal file
@ -0,0 +1,11 @@
|
||||
@import 'tailwindcss';
|
||||
|
||||
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
||||
@source '../../storage/framework/views/*.php';
|
||||
@source '../**/*.blade.php';
|
||||
@source '../**/*.js';
|
||||
|
||||
@theme {
|
||||
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
||||
'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
}
|
||||
1
resources/js/app.js
Normal file
1
resources/js/app.js
Normal file
@ -0,0 +1 @@
|
||||
import './bootstrap';
|
||||
4
resources/js/bootstrap.js
vendored
Normal file
4
resources/js/bootstrap.js
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import axios from 'axios';
|
||||
window.axios = axios;
|
||||
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
277
resources/views/welcome.blade.php
Normal file
277
resources/views/welcome.blade.php
Normal file
File diff suppressed because one or more lines are too long
79
routes/api.php
Normal file
79
routes/api.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\GeoTrackController;
|
||||
use App\Http\Controllers\GeoPlanController;
|
||||
use App\Http\Controllers\GridController;
|
||||
use App\Http\Controllers\MerchantController;
|
||||
use App\Http\Controllers\StaffController;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| API Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| GeoReach Intelligence API Routes
|
||||
|
|
||||
*/
|
||||
|
||||
// ============ Merchants Routes ============
|
||||
Route::get('/merchants', [MerchantController::class, 'index']);
|
||||
|
||||
// ============ Grid Routes ============
|
||||
Route::get('/grids', [GridController::class, 'index']);
|
||||
Route::get('/grids/generate', [GridController::class, 'generate']);
|
||||
Route::get('/grids/stats', [GridController::class, 'stats']);
|
||||
Route::post('/grids/{gridId}/download', [GridController::class, 'download']);
|
||||
|
||||
// ============ GeoTrack Routes ============
|
||||
Route::get('/sales-routes', [GeoTrackController::class, 'index']);
|
||||
Route::get('/sales-routes/dates', [GeoTrackController::class, 'dates']);
|
||||
Route::get('/sales-routes/sales', [GeoTrackController::class, 'sales']);
|
||||
Route::get('/sales-routes/{id}', [GeoTrackController::class, 'show']);
|
||||
Route::post('/sales-routes/waypoints', [GeoTrackController::class, 'storeWaypoint']);
|
||||
|
||||
// ============ GeoPlan Routes ============
|
||||
Route::get('/sales-plans', [GeoPlanController::class, 'index']);
|
||||
Route::get('/sales-plans/dates', [GeoPlanController::class, 'dates']);
|
||||
Route::get('/sales-plans/sales', [GeoPlanController::class, 'sales']);
|
||||
Route::get('/sales-plans/{id}', [GeoPlanController::class, 'show']);
|
||||
Route::post('/sales-plans', [GeoPlanController::class, 'store']);
|
||||
Route::put('/sales-plans/{id}', [GeoPlanController::class, 'update']);
|
||||
Route::delete('/sales-plans/{id}', [GeoPlanController::class, 'destroy']);
|
||||
Route::post('/sales-plans/{id}/optimize', [GeoPlanController::class, 'optimize']);
|
||||
Route::post('/sales-plans/{id}/add-target', [GeoPlanController::class, 'addTarget']);
|
||||
Route::put('/sales-plans/{id}/target/{targetId}', [GeoPlanController::class, 'updateTarget']);
|
||||
Route::delete('/sales-plans/{id}/target/{targetId}', [GeoPlanController::class, 'removeTarget']);
|
||||
Route::post('/sales-plans/assign-target', [GeoPlanController::class, 'autoAssignTarget']);
|
||||
|
||||
// ============ GeoTrack Mobile API (Flutter) ============
|
||||
Route::prefix('mobile')->group(function () {
|
||||
Route::post('/login', [GeoTrackController::class, 'mobileLogin']);
|
||||
Route::post('/checkin', [GeoTrackController::class, 'mobileCheckin']);
|
||||
Route::post('/checkout', [GeoTrackController::class, 'mobileCheckout']);
|
||||
Route::post('/waypoints/batch', [GeoTrackController::class, 'storeBatchWaypoints']);
|
||||
Route::get('/route/today', [GeoTrackController::class, 'getTodayRoute']);
|
||||
Route::get('/status', [GeoTrackController::class, 'getTrackingStatus']);
|
||||
|
||||
// New endpoints
|
||||
Route::get('/schedules', [GeoPlanController::class, 'getMobileSchedule']);
|
||||
Route::post('/schedules/{id}/target', [GeoPlanController::class, 'addTarget']);
|
||||
Route::post('/schedules/{id}/target/{targetId}/checkin', [GeoPlanController::class, 'checkinTarget']);
|
||||
Route::delete('/schedules/{id}/target/{targetId}', [GeoPlanController::class, 'removeTarget']);
|
||||
Route::post('/prospects', [\App\Http\Controllers\CustomerController::class, 'store']);
|
||||
Route::post('/profile', [GeoTrackController::class, 'updateProfile']);
|
||||
Route::post('/change-password', [GeoTrackController::class, 'changePassword']);
|
||||
});
|
||||
|
||||
// ============ Master Data: Staff ============
|
||||
Route::apiResource('staff', StaffController::class);
|
||||
Route::apiResource('customers', \App\Http\Controllers\CustomerController::class);
|
||||
|
||||
// ============ Health Check ============
|
||||
Route::get('/health', function () {
|
||||
return response()->json([
|
||||
'status' => 'ok',
|
||||
'timestamp' => now()->toISOString(),
|
||||
]);
|
||||
});
|
||||
8
routes/console.php
Normal file
8
routes/console.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
7
routes/web.php
Normal file
7
routes/web.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
4
storage/app/.gitignore
vendored
Normal file
4
storage/app/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*
|
||||
!private/
|
||||
!public/
|
||||
!.gitignore
|
||||
2
storage/app/private/.gitignore
vendored
Normal file
2
storage/app/private/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/app/public/.gitignore
vendored
Normal file
2
storage/app/public/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
9
storage/framework/.gitignore
vendored
Normal file
9
storage/framework/.gitignore
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
compiled.php
|
||||
config.php
|
||||
down
|
||||
events.scanned.php
|
||||
maintenance.php
|
||||
routes.php
|
||||
routes.scanned.php
|
||||
schedule-*
|
||||
services.json
|
||||
3
storage/framework/cache/.gitignore
vendored
Normal file
3
storage/framework/cache/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*
|
||||
!data/
|
||||
!.gitignore
|
||||
2
storage/framework/cache/data/.gitignore
vendored
Normal file
2
storage/framework/cache/data/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/framework/sessions/.gitignore
vendored
Normal file
2
storage/framework/sessions/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/framework/testing/.gitignore
vendored
Normal file
2
storage/framework/testing/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/framework/views/.gitignore
vendored
Normal file
2
storage/framework/views/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/logs/.gitignore
vendored
Normal file
2
storage/logs/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
19
tests/Feature/ExampleTest.php
Normal file
19
tests/Feature/ExampleTest.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
// use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ExampleTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* A basic test example.
|
||||
*/
|
||||
public function test_the_application_returns_a_successful_response(): void
|
||||
{
|
||||
$response = $this->get('/');
|
||||
|
||||
$response->assertStatus(200);
|
||||
}
|
||||
}
|
||||
10
tests/TestCase.php
Normal file
10
tests/TestCase.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Tests;
|
||||
|
||||
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||||
|
||||
abstract class TestCase extends BaseTestCase
|
||||
{
|
||||
//
|
||||
}
|
||||
16
tests/Unit/ExampleTest.php
Normal file
16
tests/Unit/ExampleTest.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class ExampleTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* A basic test example.
|
||||
*/
|
||||
public function test_that_true_is_true(): void
|
||||
{
|
||||
$this->assertTrue(true);
|
||||
}
|
||||
}
|
||||
18
vite.config.js
Normal file
18
vite.config.js
Normal file
@ -0,0 +1,18 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import laravel from 'laravel-vite-plugin';
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
laravel({
|
||||
input: ['resources/css/app.css', 'resources/js/app.js'],
|
||||
refresh: true,
|
||||
}),
|
||||
tailwindcss(),
|
||||
],
|
||||
server: {
|
||||
watch: {
|
||||
ignored: ['**/storage/framework/views/**'],
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user