2024-09-18 15:15:57 -07:00

28 lines
615 B
PHP

@extends('layouts.app')
@section('header')
@include('partials.management.index.management-tabs')
@endsection()
@section('content')
<div class="container">
<div class="tab-content">
@include('partials.management.index.customers')
@include('partials.management.index.packing-slips')
@include('partials.management.index.service-files')
</div>
</div>
<!-- Create Customer Modal -->
@include('partials.customers.index.create-modal')
<!-- Delete Customer Modal -->
@include('partials.customers.index.delete-all-modal')
@endsection