@extends('layouts/pos_layout') @section('title', '| Purchase Return List') @section('content') @include('successMsg')

Gift List

{{ csrf_field() }} @foreach($data as $value) @endforeach
SL# Gift Date Branch Name Customer Name Customer Phone Total Qty Total Cost Price Reason Action
{{++$no}} {{date('d-m-Y', strtotime($value->gift_date))}} {{$value->branch->name}} {{$value->customer_name}} {{$value->customer_phone}} {{$value->total_quantity}} {{number_format($value->total_amount, 2)}} {{$value->reason}}   @if(date('d-m-Y', strtotime($value->gift_date)) == $branch_active_date)   @endif
@include('dataTableScript') @endsection