@extends('admin.master') @section("title","Artisan") @section("desc","") @section('content')
{{col("col-md-6","Schema Generator")}}
             Schema::create('{{$tableName}}', function (Blueprint $table) {
                $table->id();
                $table->timestamps();
                $table->string('{{$column}}', 100)->nullable()->default(null); 
$table->date('{{$column}}')->nullable()->default(null); 

                
                
            });
             
@csrf Table Name: Column List:
{{_col()}} {{col("col-md-6","Table Column To Array")}}
Click to select all
@csrf Table Name:
{{_col()}} {{col("col-md-6","Array")}}
            [
                '{{$column}}',
                
            ]
             
@csrf Column List:
{{_col()}}

{{__('Artisan Command Panel')}}

$command, 'html' => $output, 'type' => 'ARTISAN', 'kid' => 'ARTISAN' ],"contents"); dump($output); } catch (\Throwable $th) { dump($th); } } ?>
{{$macro}}
where("type","ARTISAN")->orderBy("id","DESC")->simplePaginate(100); foreach($query AS $q) { ?>
Command Output
title ?>
{{$query->links()}}
@endsection @push('scripts') @endpush