mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
excel upload old bookings
This commit is contained in:
@@ -395,6 +395,7 @@
|
||||
return path.slice(-3);
|
||||
},
|
||||
isImage(path) {
|
||||
return false;
|
||||
var ext = this.getExtension(path);
|
||||
return ext === 'jpg' || ext === 'jpeg' || ext === 'bmp' || ext === 'png';
|
||||
},
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<form action="{{route('booking.bulk')}}" method="post" enctype="multipart/form-data">
|
||||
{{--<input placeholder="id" name="id">--}}
|
||||
{{--<input placeholder="marking" name="marking">--}}
|
||||
{{--<input placeholder="amount" name="amount">--}}
|
||||
{{--<input placeholder="deposit" name="deposit">--}}
|
||||
{{--<input placeholder="vendor" name="vendor">--}}
|
||||
<input type="file" name="xsl">
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user