@extends('admin.layouts.master') @section('title', 'Database Backup - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Database Backup') }} @endslot @slot('menu1') {{ __('Database Backup') }} @endslot @endcomponent
@if ($errors->any()) @endif
{{ __('Backup Manager') }}
@csrf

{{ __('adminstaticword.ImportantNote') }}
  • Usually in all hosting dump path for MYSQL is /usr/bin
  • If that path not work than contact your hosting provider with subject "What is my MYSQL DUMP Binary path ?"
  • Enter the path without mysqldump in path
Note:
  • {{ __('It will generate only database backup of your site.') }}
  • {{ __('Download URL is valid only for 1 (minute).') }}
  • Make sure mysql dump is enabled on your server for database backup and before run this or run only database backup command make sure you save the mysql dump path in config/database.php.
{{-- {!! $html !!} --}}

Download the latest backup

@php $dir17 = storage_path() . '/app/'.config('app.name'); @endphp
@endsection