@extends('adminlte::page') @section('title', 'Artisan Commands') @section('content_header')

Artisan Commands Runner

@stop @section('content')

Run Laravel Artisan Commands

@if ($errors->any()) @endif @if (session('success')) @endif @if (session('error')) @endif
@csrf
@csrf
@csrf
@csrf
@csrf
@csrf
@if (session('output'))
Command Output:
{{ session('output') }}
@endif

Available Commands

  • optimize:clear - Clear optimized autoloader files
  • cache:clear - Clear application cache
  • route:clear - Clear cached routes
  • config:clear - Clear configuration cache
  • view:clear - Clear compiled views
  • migrate - Run pending migrations
  • migrate:rollback - Rollback migrations

⚠️ Warning

This page allows running Laravel artisan commands. Use with caution! Only authorized users should access this page.
@stop @section('css') @stop