You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
615 B
PHTML
28 lines
615 B
PHTML
3 months ago
|
@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
|