2024-09-11 11:24:49 -07:00

26 lines
542 B
PHP

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