@extends('layouts.master') @section('title', 'Blogs') @section('css') @endsection @section('breadcrumb')

Blogs

@endsection @section('main_content') @use('App\Helpers\Helpers') @php $settings = Helpers::getSettingPageContent(); @endphp
Good day, {{ \Illuminate\Support\Str::title(Auth::user()->first_name ?? '') }} {{ \Illuminate\Support\Str::title(Auth::user()->last_name ?? '') }}

Welcome to the {{ $settings['general']['site_name'] }} ! We are glad that you have visited our dashboard.

Ticket-star

{{ \App\Models\Category::all()->count() }}

Total Categories

{{ \App\Models\Tag::all()->count() }}

Total Tags

{!! $dataTable->table() !!}
@endsection @section('scripts') {!! $dataTable->scripts() !!} @endsection