@extends('layouts.app') @section('title', 'Blade Files - ISP ERP System') @section('page-title', 'Blade Files Management') @section('styles') @endsection @section('content')

Blade Files Management

View and manage all blade template files

@if(count($bladeFiles) > 0) @foreach($bladeFiles as $file)
{{ $file['name'] }}
{{ $file['type'] }} blade file
{{ ucfirst($file['type']) }} {{ \Carbon\Carbon::parse($file['modified'])->format('M d, Y') }}
{{ $file['path'] }}
{{ $file['size'] }}
{{ \Carbon\Carbon::parse($file['modified'])->format('H:i') }}
@endforeach @else

No Blade Files Found

No blade template files were found in the resources/views directory.

@endif
@if(count($bladeFiles) > 0)
Blade Files Statistics
{{ collect($bladeFiles)->where('type', 'index')->count() }}
Index Files
{{ collect($bladeFiles)->where('type', 'create')->count() }}
Create Files
{{ collect($bladeFiles)->where('type', 'edit')->count() }}
Edit Files
{{ collect($bladeFiles)->where('type', 'show')->count() }}
Show Files
{{ collect($bladeFiles)->where('type', 'tree')->count() }}
Tree Files
{{ collect($bladeFiles)->where('type', 'other')->count() }}
Other Files
@endif
@section('scripts') @endsection @endsection