fix 404 not found for upload user bankslip

added display term on booking table
This commit is contained in:
Jack Goh
2018-06-21 14:31:53 +08:00
parent 23b024c2fb
commit 3c263b56ea
2 changed files with 16 additions and 80 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class BookingController extends Controller
{
public function index(){
$bookings = Booking::select('id', 'created_at', 'status', 'rate', 'amount', 'bia', 'verification_status')
$bookings = Booking::select('id', 'created_at', 'status', 'rate', 'term', 'amount', 'bia', 'verification_status')
->where('user_id',Auth::user()->id)
->get();