https://www.ebrlogisticllc.net/logistic-vans-20-26-ft-straight-trucks-43-53-trailers-dry-vans-or-referee-ltl-ptl-and-ftltebr-logistics-transportation-#tebr-logistics-transportation-const express = require('express'); const Load = require('./models/Load'); const { authMiddleware } = require('./auth'); const router = express.Router(); // Post a new load (Shipper) router.post('/', authMiddleware, async (req, res) => { if (req.user.role !== 'Shipper') return res.status(403).json({ error: 'Forbidden' }); const load = await Load.create({ ...req.body, shipper: req.user.id }); res.json(load); }); // Get available loads router.get('/', async (req, res) => { const loads = await Load.find({ status: 'open' }); res.json(loads); }); // Claim a load (Carrier) router.post('/:id/claim', authMiddleware, async (req, res) => { if (req.user.role !== 'Carrier' && req.user.role !== 'Broker') return res.status(403).json({ error: 'Forbidden' }); const load = await Load.findById(req.params.id); if (!load || load.status !== 'open') return res.status(404).json({ error: 'Not found' }); load.status = 'claimed'; load.carrier = req.user.id; await load.save(); res.json(load); }); module.exports = router; const express = require('express'); const jwt = require('jsonwebtoken'); const bcrypt = require('bcrypt'); const User = require('./models/User'); const router = express.Router(); const JWT_SECRET = process.env.JWT_SECRET || 'SECRET'; // Register router.post('/register', async (req, res) => { const { email, password, role, company } = req.body; const hash = await bcrypt.hash(password, 10); const user = await User.create({ email, password: hash, role, company }); const token = jwt.sign({ id: user._id, role: user.role }, JWT_SECRET, { expiresIn: '1d' }); res.json({ token, user }); }); // Login router.post('/login', async (req, res) => { const { email, password } = req.body; const user = await User.findOne({ email }); if (!user) return res.status(401).json({ error: 'Invalid credentials' }); const match = await bcrypt.compare(password, user.password); if (!match) return res.status(401).json({ error: 'Invalid credentials' }); const token = jwt.sign({ id: user._id, role: user.role }, JWT_SECRET, { expiresIn: '1d' }); res.json({ token, user }); }); // JWT Middleware function authMiddleware(req, res, next) { const token = req.headers.authorization?.split(' ')[1]; if (!token) return res.status(401).json({ error: 'No token' }); try { req.user = jwt.verify(token, JWT_SECRET); next(); } catch { res.status(401).json({ error: 'Invalid token' }); } } module.exports = { router, authMiddleware };# Central Dispatch Clone – API Design | Endpoint | Method | Description | Request Body | Response | Roles | |-------------------------|--------|----------------------------------|-------------------|---------------|---------------| | /auth/register | POST | Register new user | email, password, role, company info | JWT, user info | All | | /auth/login | POST | Login user | email, password | JWT, user info| All | | /loads | GET | List available loads | filters | loads array | All | | /loads | POST | Post a new load | load details | load object | Shipper | | /loads/:id | GET | Get load details | | load object | All | | /loads/:id/claim | POST | Claim a load | | job object | Carrier/Broker| | /users/:id | GET | Get user profile | | user object | All | | /messages | GET | List messages | | messages array| All | | /messages | POST | Send new message | to, body | message object| All | | /ratings | POST | Submit a rating | to, rating, review| rating object | All | | /admin/users | GET | List all users | | users array | Admin | | /admin/loads | GET | List all loads | | loads array | Admin |# Central Dispatch Clone – Wireframes ## 1. Login / Signup - Fields: Email, Password, Role Select (Shipper/Carrier/Broker) - Buttons: Login, Signup, Forgot Password ## 2. Dashboard - Tabs/Sidebar: Loads, Profile, Messages, Ratings, Settings - Loads Table/List: - Columns: Load ID, Origin, Destination, Vehicle, Price, Status, Actions ## 3. Load Posting (Shipper) - Form Fields: - Pickup Location (auto-complete) - Dropoff Location (auto-complete) - Date(s) - Vehicle Info (year, make, model, VIN) - Price Offer - Instructions/Notes - Attach Documents ## 4. Search Loads (Carrier/Broker) - Filters: - Location (radius) - Date - Vehicle type - Price range - Status (open/claimed/completed) - Results: Table/List with Claim/Bid button ## 5. Load Details - Full load info - Claim/Bid option - Message Shipper button ## 6. Messaging - Inbox, Conversation view - Respond, attach files ## 7. Profile Page - Company info - Contact, insurance docs - Ratings ## 8. Admin Panel - User list - Load moderation - Disputes - Analytics --- *Ask for Figma or Miro links if you want online editable wireframes!* ## 1. Login / Signup - Fields: Email, Password, Role Select (Shipper/Carrier/Broker) - Buttons: Login, Signup, Forgot Password ## 2. Dashboard - Tabs/Sidebar: Loads, Profile, Messages, Ratings, Settings - Loads Table/List: - Columns: Load ID, Origin, Destination, Vehicle, Price, Status, Actions ## 3. Load Posting (Shipper) - Form Fields: - Pickup Location (auto-complete) - Dropoff Location (auto-complete) - Date(s) - Vehicle Info (year, make, model, VIN) - Price Offer - Instructions/Notes - Attach Documents ## 4. Search Loads (Carrier/Broker) - Filters: - Location (radius) - Date - Vehicle type - Price range - Status (open/claimed/completed) - Results: Table/List with Claim/Bid button ## 5. Load Details - Full load info - Claim/Bid option - Message Shipper button ## 6. Messaging - Inbox, Conversation view - Respond, attach files ## 7. Profile Page - Company info - Contact, insurance docs - Ratings ## 8. Admin Panel - User list - Load moderation - Disputes - Analytics
Skip to Content
Towing, transportation, hauling, and shipping services are provided globally. MTAS operates vessels across all five oceans and offers shipping services worldwide.
Towing, transportation, hauling, and shipping services are provided globally. MTAS operates vessels across all five oceans and offers shipping services worldwide.
Logistic Vans, 20-26 ft Straight Trucks, 43-53 Trailers Dry vans or Referee, LTL, PTL, and FTL
Logistics Sprinters & Van
Door to Door Rush deliveries
Over Loads, Oversize or Overall weight
Transportation 1 & 9-Kart, Open- Enclosed-Kart-transportation
Expedite Shipping roro-roll-on/roll-off-container-shipping-
USA Heavy Equipment-Trucks'-Automobile & Parts Sales
USA Auction Access & Heavy Equipment, Sales
MTAS USA Trucks for Sale
Export & Import Auto for Sale
Free loads & Posting
Hiring Haulers 1, 3, 7, 9 Kart trailers & Heavy equipment
Appointments
Contact
About
https://www.facebook.com/share/g/17AnmjZjR7/
Login Account
English
0
0
Book now
Towing, transportation, hauling, and shipping services are provided globally. MTAS operates vessels across all five oceans and offers shipping services worldwide.
Towing, transportation, hauling, and shipping services are provided globally. MTAS operates vessels across all five oceans and offers shipping services worldwide.
Logistic Vans, 20-26 ft Straight Trucks, 43-53 Trailers Dry vans or Referee, LTL, PTL, and FTL
Logistics Sprinters & Van
Door to Door Rush deliveries
Over Loads, Oversize or Overall weight
Transportation 1 & 9-Kart, Open- Enclosed-Kart-transportation
Expedite Shipping roro-roll-on/roll-off-container-shipping-
USA Heavy Equipment-Trucks'-Automobile & Parts Sales
USA Auction Access & Heavy Equipment, Sales
MTAS USA Trucks for Sale
Export & Import Auto for Sale
Free loads & Posting
Hiring Haulers 1, 3, 7, 9 Kart trailers & Heavy equipment
Appointments
Contact
About
https://www.facebook.com/share/g/17AnmjZjR7/
Login Account
English
0
0
Book now
Logistic Vans, 20-26 ft Straight Trucks, 43-53 Trailers Dry vans or Referee, LTL, PTL, and FTL
Logistics Sprinters & Van
Door to Door Rush deliveries
Over Loads, Oversize or Overall weight
Transportation 1 & 9-Kart, Open- Enclosed-Kart-transportation
Expedite Shipping roro-roll-on/roll-off-container-shipping-
Folder: USA Heavy Equipment-Trucks'-Automobile & Parts Sales
Back
USA Auction Access & Heavy Equipment, Sales
MTAS USA Trucks for Sale
Export & Import Auto for Sale
Free loads & Posting
Hiring Haulers 1, 3, 7, 9 Kart trailers & Heavy equipment
Appointments
Contact
About
https://www.facebook.com/share/g/17AnmjZjR7/
Login Account
English
Back
Book now

Made By Miguel Duran with Squarespace Tools

Locations: Harrisburg PA, Elizabeth NJ, Houston Texas Contact Varon

Phone (856)641-5970

Export & Import Auto for Sale
MTAS se distingue además por ofrecer servicios integrales de inspección para equipos pesados, camiones y vehículos, garantizando la calidad y el cumplimiento normativo antes de finalizar cualquier transacción. Heavy Haulin
MTAS se distingue además por ofrecer servicios integrales de inspección para equipos pesados, camiones y vehículos, garantizando la calidad y el cumplimiento normativo antes de finalizar cualquier transacción. Heavy Hauling Overloads, Oversize or Overall weight hauling equipment, MTAS manages the necessary permitsFor additional information, please contact: (856) 641-5970
MTAS is a nationwide freight broker offering supply chain solutions in areas: Logistic, Vehicle transport, freight and load hauling, cargo services, and expedited shipping. 

MTAS efficiently manages logistics for residential, manufacturing, and comm
MTAS is a nationwide freight broker offering supply chain solutions in areas: Logistic, Vehicle transport, freight and load hauling, cargo services, and expedited shipping. MTAS efficiently manages logistics for residential, manufacturing, and commercial clients, and ensures secure financial transactions with its experienced dispatch and import/export team. MTAS manages pick-up and drop-off services nationwide and employs various vehicles, such as sprinter vans under 2,000 lbs, 20–26 ft straight trucks, 43–53 ft dry vans or reefers, flatbeds, hotshots, and Low Boy RGN extended axle trailers for product distribution to sectors including ports, airport deliveries, auctions, commercial and construction sites. The company provides RoRo (Roll-on/Roll-off) and container shipping services, supporting packing, drop-off, pickup, and secure cargo transportation for items such as vehicles and heavy equipment. Shipping containers are available in 20- and 40-foot sizes with costs generally ranging from $1,000 to $4,500. The company provides auction access and vehicle transport for exporters and importers across North America. Membership includes auction access and financial protection for an annual fee of $999.99. For additional details, contact (856) 641-5970.
MTAS is a freight broker and transportation company offering complete trucking and logistics services across North America.
At MTAS LLC, we understand the emotional challenges faced by families affected by ICE. Our commitment to providing compassionate vehicle recovery support is unwavering, as we strive to assist those in difficult situations with the utmost respect and
At MTAS LLC, we understand the emotional challenges faced by families affected by ICE. Our commitment to providing compassionate vehicle recovery support is unwavering, as we strive to assist those in difficult situations with the utmost respect and understanding. We believe in ethical practices that prioritize the well-being of families during these trying times. #VehicleRecovery #FamilySupport #Compassion #EthicalPractices #CommunityCare
At MTAS LLC, we understand the emotional challenges faced by families affected by ICE. Our commitment to providing compassionate vehicle recovery support is unwavering, as we strive to assist those in difficult situations with the utmost respect and
At MTAS LLC, we understand the emotional challenges faced by families affected by ICE. Our commitment to providing compassionate vehicle recovery support is unwavering, as we strive to assist those in difficult situations with the utmost respect and understanding. We believe in ethical practices that prioritize the well-being of families during these trying times. #VehicleRecovery #FamilySupport #Compassion #EthicalPractices #CommunityCare
En el mundo de las subastas, contar con un socio confiable es clave. En MTAS, ofrecemos acceso sin igual a subastas de equipos pesados, automóviles, motocicletas y más, garantizando un proceso de compra fluido y transparente. Nos encarg
En el mundo de las subastas, contar con un socio confiable es clave. En MTAS, ofrecemos acceso sin igual a subastas de equipos pesados, automóviles, motocicletas y más, garantizando un proceso de compra fluido y transparente. Nos encargamos de todos los detalles, desde el embarque hasta la obtención de placas temporales, así como la reconstrucción de títulos salvados y la gestión de registros duplicados. Con nuestra experiencia, puede concentrarse en lo que realmente importa: adquirir lo que necesita, cumpliendo con todas las normativas. No subestime la importancia de una logística eficiente. #AuctionAccess #Logistics #HeavyEquipment #VehicleAuction #Compliance https://conta.cc/44FvH83
En MTAS, nos enorgullece ser su socio de confianza en el acceso a subastas a nivel global, facilitando la compra de equipos pesados, automóviles, motocicletas, botes y jet skis. Como sus agentes en los Estados Unidos, garantizamos un proceso e
En MTAS, nos enorgullece ser su socio de confianza en el acceso a subastas a nivel global, facilitando la compra de equipos pesados, automóviles, motocicletas, botes y jet skis. Como sus agentes en los Estados Unidos, garantizamos un proceso eficiente y transparente, desde el embarque hasta la obtención de placas temporales de concesionario. Nos ocupamos de cada detalle, incluyendo la reconstrucción de títulos salvados y la gestión de registros duplicados, para que usted pueda concentrarse en hacer su compra sin preocupaciones. No deje pasar la oportunidad de aprovechar nuestros servicios expertos y confiables; estamos aquí para asegurar que su experiencia de compra sea fluida y satisfactoria, cumpliendo con todas las normativas necesarias. Llamanos Hoy (856)641-5970 Elevate your dealership with access to auctions and essential tools. #AuctionAccess #DealershipGrowth https://conta.cc/40LKXPA https://conta.cc/4lIzatk
Unlock auction access and grow your dealership with our expert help! #AuctionAccess #DealershipGrowth
https://conta.cc/3Tw0mzO
Unlock auction access and grow your dealership with our expert help! #AuctionAccess #DealershipGrowth https://conta.cc/3Tw0mzO
MTAS se distingue además por ofrecer servicios integrales de inspección para equipos pesados, camiones y vehículos, garantizando la calidad y el cumplimiento normativo antes de finalizar cualquier transacción. Heavy Haulin MTAS is a nationwide freight broker offering supply chain solutions in areas: Logistic, Vehicle transport, freight and load hauling, cargo services, and expedited shipping. 

MTAS efficiently manages logistics for residential, manufacturing, and comm
MTAS is a freight broker and transportation company offering complete trucking and logistics services across North America.
At MTAS LLC, we understand the emotional challenges faced by families affected by ICE. Our commitment to providing compassionate vehicle recovery support is unwavering, as we strive to assist those in difficult situations with the utmost respect and At MTAS LLC, we understand the emotional challenges faced by families affected by ICE. Our commitment to providing compassionate vehicle recovery support is unwavering, as we strive to assist those in difficult situations with the utmost respect and En el mundo de las subastas, contar con un socio confiable es clave. En MTAS, ofrecemos acceso sin igual a subastas de equipos pesados, automóviles, motocicletas y más, garantizando un proceso de compra fluido y transparente. Nos encarg En MTAS, nos enorgullece ser su socio de confianza en el acceso a subastas a nivel global, facilitando la compra de equipos pesados, automóviles, motocicletas, botes y jet skis. Como sus agentes en los Estados Unidos, garantizamos un proceso e Unlock auction access and grow your dealership with our expert help! #AuctionAccess #DealershipGrowth
https://conta.cc/3Tw0mzO