@extends('layouts.admin') @section('title', 'System Settings') @section('page_title', 'System Settings') @section('content')

System Maintenance

Perform critical system operations like database migrations and cache clearing.

@if(session('success'))

Success

{{ session('success') }}

@endif @if($errors->any())

Error

@endif

Database Migration

Run database migrations to update the schema. This should be done after an update or when new features require database changes.

@csrf

Clear System Cache

Clear application, route, and configuration cache. Use this if you are not seeing recent changes or if the application is behaving unexpectedly.

@csrf
@endsection