@extends('admin.common.layout') @section('content')

Run Console Commands

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Console Commands

Instructions: Please upload your `.xlsx` files into the public/import_excel_files folder with the following file names before running the commands:

  • Transaction File: tran.xlsx
  • Holding File: hold.xlsx
  • ISIN File: isin.xlsx
  • Client File: client.xlsx
  • Business Partner Data File: bp.xlsx
  • Rate File: rate.xlsx

Running a command will delete old data and replace it with the new data from the uploaded file.

@csrf
@csrf
@csrf
@csrf
@csrf
@csrf
@endsection @section('script') @endsection