@extends('sanafworld.layouts.master') @section('title', 'System Tools') @section('content')
@foreach([ ['cache_clear', 'Clear Cache', 'fa-broom', 'Clears application cache'], ['config_clear', 'Clear Config', 'fa-cog', 'Clears cached config'], ['route_clear', 'Clear Routes', 'fa-route', 'Clears cached routes'], ['view_clear', 'Clear Views', 'fa-eye', 'Clears compiled Blade views'], ['optimize_clear', 'Optimize Clear', 'fa-rocket', 'Clears all optimization caches'], ] as [$action, $title, $icon, $desc])
{{ $title }}

{{ $desc }}

@csrf
@endforeach
@endsection