Application

# Introduction

This is a ready-to-use layout specifically designed for web applications like SaaS products, dashboards, user panel etc.

# Example

# Usage

Start by publishing the layout's view file:

 
php artisan vendor:publish --tag=zinq-layouts

Next, you may include the layout in your Blade file:

 
@extends('layouts.application')

@section('content')
    <!-- Your content here -->
@endsection

You can use header component to display the page title:

 
@extends('layouts.application')

@section('content')
    <zinq:app.header text="Dashboard" sub="Your command center for managing products, tracking sales, and staying in control." />
    
    <!-- Your content here -->
@endsection